Skip to content

Commit bd3541d

Browse files
committed
Fixed the call to python 2
1 parent ede7df6 commit bd3541d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cromshell

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
################################################################################
44

55
# Setup variables for the script:
6-
UNALIASED_SCRIPT_NAME=$( /usr/bin/python -c "import os;print os.path.realpath(\"${BASH_SOURCE[0]}\")" )
6+
UNALIASED_SCRIPT_NAME=$( python2 -c "import os;print os.path.realpath(\"${BASH_SOURCE[0]}\")" )
77
SCRIPTDIR="$( cd "$( dirname "${UNALIASED_SCRIPT_NAME}" )" && pwd )"
88
SCRIPTNAME=$( echo $0 | sed 's#.*/##g' )
99
MINARGS=1

0 commit comments

Comments
 (0)