diff --git a/unskript-ctl/unskript-ctl.sh b/unskript-ctl/unskript-ctl.sh index c05e4a372..5c48fa231 100755 --- a/unskript-ctl/unskript-ctl.sh +++ b/unskript-ctl/unskript-ctl.sh @@ -5,4 +5,12 @@ # and Run the runbook cd /usr/local/bin -/opt/conda/bin/python ./unskript_ctl.py "$@" +if [ -f "/opt/conda/bin/python" ]; +then + /opt/conda/bin/python ./unskript_ctl.py "$@" +elif [ -f "/opt/unskript/bin/python" ]; +then + /opt/unskript/bin/python ./unskript_ctl.py "$@" +else + /usr/bin/env python ./unskript_ctl.py "$@" +fi