diff --git a/tools/esptool.sh b/tools/esptool.sh index dcbfa449..d372c3fa 100755 --- a/tools/esptool.sh +++ b/tools/esptool.sh @@ -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 \ No newline at end of file