diff --git a/run.sh b/run.sh index f6fd846..a6aa5c2 100755 --- a/run.sh +++ b/run.sh @@ -1,8 +1,12 @@ #!/bin/bash -# Use This line would work in case of the docker container -# Else the relevant env variables will not be loaded during evaluatino -source activate root -echo "root" +if [[ -z "${CROWDAI_MARLO_GRADING}" ]]; then + source activate marlo #Use This line would work in case of local debugs; + # in a local debug setup, you should use your env name instead of marlo + echo "marlo" +else + source activate root #Use This line would work in case of the docker container + echo "root" +fi python run.py