mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
tools: export.sh: fix ESP-IDF path detection on macos
The argument passed to the function is in $1; $0 contains `-bash`. Before this fix, IDF_PATH would be set to $PWD instead of the correct path.
This commit is contained in:
parent
1b6010bedf
commit
3f9fc97de7
@ -2,9 +2,10 @@
|
||||
|
||||
function realpath_int() {
|
||||
wdir="$PWD"; [ "$PWD" = "/" ] && wdir=""
|
||||
case "$0" in
|
||||
/*) scriptdir="${0}";;
|
||||
*) scriptdir="$wdir/${0#./}";;
|
||||
arg=$1
|
||||
case "$arg" in
|
||||
/*) scriptdir="${arg}";;
|
||||
*) scriptdir="$wdir/${arg#./}";;
|
||||
esac
|
||||
scriptdir="${scriptdir%/*}"
|
||||
echo "$scriptdir"
|
||||
|
Loading…
x
Reference in New Issue
Block a user