Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Variants AK and ON code error #41

Open
hrushikeshm-g opened this issue Mar 7, 2024 · 0 comments
Open

Variants AK and ON code error #41

hrushikeshm-g opened this issue Mar 7, 2024 · 0 comments

Comments

@hrushikeshm-g
Copy link

hrushikeshm-g commented Mar 7, 2024

#!/bin/bash

# List of possible values for the wildcard * (FVS variants)
# ? : varient (ak and on) does not work variants (ak and on) does not work due to errors in their code
folders=("bc" "bm" "ca" "ci" "cr" "cs" "ec" "em" "kt" "ls" "nc" "ne" "ie" "op" "oc" "pn" "sn" "so" "tt" "ut" "wc" "ak" "ws" "on")  # Add other values as needed

for folder in "${folders[@]}"
do
    cd "FVS${folder}_CmakeDir" && make
    # Check the exit code to determine success or failure
    if [ $? -eq 0 ]; then
        echo "Success: FVS${folder}_CmakeDir"
        cp "FVS${folder}" ../../../binaries
    else
        echo "Failure: FVS${folder}_CmakeDir"
    fi
    # Move back to the original directory
    cd ..
done

? : variant (ak and on) does not work variants (ak and on) does not work due to errors in their code

Not able to create the binaries for AK and ON variant executable (FVSak and FVSon not able to created...)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant