more bugfixes 7

This commit is contained in:
2025-05-09 17:02:14 -06:00
parent 5e27d410f4
commit acd9eb6634
3 changed files with 10 additions and 3 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
echo "esp-idf-tools install dir: $ESPIDF_INSTALLDIR" echo "esp-idf-tools install dir: $ESPIDF_INSTALLDIR"
echo "esp-idf-tools version: $(cat $ESPIDF_INSTALLDIR/esp-idf-tools/version.txt)" echo "esp-idf-tools custom_bin dir: $ESPIDF_INSTALLDIR/.custom_bin/"
echo "esp-idf-tools last install: $(tail -1 $ESPIDF_INSTALLDIR/version-data.log)" echo "esp-idf-tools version: $(cat $ESPIDF_INSTALLDIR/.custom_bin/version.txt)"
echo "esp-idf-tools last install: $(tail -1 $ESPIDF_INSTALLDIR/.custom_bin/version-data.log)"
echo "esp-idf path: $IDF_PATH" echo "esp-idf path: $IDF_PATH"
echo "esp-idf version: $ESP_IDF_VERSION" echo "esp-idf version: $ESP_IDF_VERSION"
echo "esp-idf python path: $IDF_PYTHON_ENV_PATH" echo "esp-idf python path: $IDF_PYTHON_ENV_PATH"
+1 -1
View File
@@ -1 +1 @@
cat $ESPIDF_INSTALLDIR/esp-idf-tools/help.txt cat $ESPIDF_INSTALLDIR/.custom_bin/help.txt
+6
View File
@@ -183,6 +183,12 @@ function handleCustomBins() {
chmod -R +x $customBinLocation chmod -R +x $customBinLocation
returnStatus returnStatus
customBinExecChk=$? customBinExecChk=$?
writeToLog "Copying vertson.txt and help.txt from $runningDir to $customBinLocation"
cp $runningDir/help.txt $customBinLocation
returnStatus
cp $runningDir/version.txt $customBinLocation
returnStatus
} }
function handleExport() { function handleExport() {