Commit ad4af0ae authored by Vincent Pelletier's avatar Vincent Pelletier

shell/caucase.sh: Allow CAUCASE_PYTHON to not be set.

parent 56c2d11a
...@@ -1201,7 +1201,7 @@ EOF ...@@ -1201,7 +1201,7 @@ EOF
echo 'Automated testing...' echo 'Automated testing...'
if command -v caucased > /dev/null; then if command -v caucased > /dev/null; then
caucased_type="path" caucased_type="path"
elif [ "x$CAUCASE_PYTHON" != "x" ] && [ -x "$CAUCASE_PYTHON" ]; then elif [ "x${CAUCASE_PYTHON:-}" != "x" ] && [ -x "$CAUCASE_PYTHON" ]; then
# Used when ran from python caucase.test # Used when ran from python caucase.test
caucased_type="environment" caucased_type="environment"
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment