Fix esptool.sh path

This commit is contained in:
Jiajie Chen 2015-03-08 07:53:23 +08:00
parent c470eade35
commit 8dc8b0eeee
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
BASEDIR=$(dirname $(readlink -f "$0"))
ret=`python -c 'import sys; print("%i" % (sys.hexversion<0x03000000))'`
if [ $ret -eq 0 ]; then
#Retry python 2
@ -7,9 +8,9 @@ if [ $ret -eq 0 ]; then
echo "Cannot find python2."
else
#Ok
python2 esptool.py $@
python2 $BASEDIR/esptool.py $@
fi
else
#Ok
python esptool.py $@
python $BASEDIR/esptool.py $@
fi