comparison mxtool/mx @ 9830:98918f518640

fixed bash syntax error
author Doug Simon <doug.simon@oracle.com>
date Tue, 28 May 2013 10:59:01 +0200
parents a607682f7ba6
children 841a9f98b97c
comparison
equal deleted inserted replaced
9829:04911dff1c66 9830:98918f518640
41 type python2.7 >/dev/null 2>&1 41 type python2.7 >/dev/null 2>&1
42 if [ $? -eq 0 ]; then 42 if [ $? -eq 0 ]; then
43 python_exe=python2.7 43 python_exe=python2.7
44 else 44 else
45 type python2 > /dev/null 2>&1 45 type python2 > /dev/null 2>&1
46 if [ $? -eq 0]; then 46 if [ $? -eq 0 ]; then
47 python_exe=python2 47 python_exe=python2
48 else 48 else
49 python_exe=python 49 python_exe=python
50 fi 50 fi
51 fi 51 fi