Skip to content

Variants AK and ON code error #41

Open
@hrushikeshm-g

Description

#!/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...)

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions