Commit d6c2e29b authored by Isuru Fernando's avatar Isuru Fernando
Browse files

Fix checking for PROJECT var

parent e20452c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ conda list

PY_EXE=python

if [[ ! -z "$PROJECT" ]]; then
if [[ -z "$PROJECT" ]]; then
    echo "PROJECT env var not set"
    exit 1
fi