diff --git a/custom_bin/espinfo b/custom_bin/espinfo index bb9a28d..56cb449 100644 --- a/custom_bin/espinfo +++ b/custom_bin/espinfo @@ -1,10 +1,11 @@ #!/bin/bash echo "esp-idf-tools install dir (\$ESPIDFTOOLS_INSTALLDIR): $ESPIDFTOOLS_INSTALLDIR" -echo "esp-idf-tools custom_bin dir: $ESPIDFTOOLS_INSTALLDIR/.custom_bin/" +echo "esp dir (\$ESPDIR): $ESPDIR" +echo "esp-idf-tools custom_bin dir: $ESPDIR/.custom_bin/" echo "tools:" -ls "$ESPIDFTOOLS_INSTALLDIR/.custom_bin/" -echo "esp-idf-tools version: $(cat $ESPIDFTOOLS_INSTALLDIR/.custom_bin/version.txt)" -echo "esp-idf-tools last install: $(tail -1 $ESPIDFTOOLS_INSTALLDIR/version-data.log)" +ls "$ESPDIR/.custom_bin/" +echo "esp-idf-tools version: $(cat $ESPDIR/.custom_bin/version.txt)" +echo "esp-idf-tools last install: $(tail -1 $ESPDIR/version-data.log)" echo "esp-idf path (\$IDF_PATH): $IDF_PATH" echo "esp-idf version (\$ESP_IDF_VERSION): $ESP_IDF_VERSION" echo "esp-idf python path (\$IDF_PYTHON_ENV_PATH): $IDF_PYTHON_ENV_PATH"