61-beta4.3.5

This commit is contained in:
2024-11-13 02:27:18 -07:00
parent d1a46a60ad
commit cc8ec82ad4
2 changed files with 23 additions and 24 deletions
+19 -20
View File
@@ -1,27 +1,26 @@
alias get_idf #2>/dev/null function checkAlias() {
echo "Testing $1"
alias $1 2>/dev/null
ret=$? ret=$?
echo "\tretcode: $ret"
if [ $ret -eq 1 ]; then if [ $ret -eq 1 ]; then
echo "get_idf not found" echo "$1 not found"
else
echo "$1: $(alias $1)"
fi fi
alias run_esp_reinstall #2>/dev/null return $ret
ret=$? }
if [ $ret -eq 1 ]; then
echo "run_esp_reinstall not found"
fi
alias esp_monitor #2>/dev/null checkAlias get_idf
ret=$? checkAlias run_esp_reinstall
if [ $ret -eq 1 ]; then checkAlias esp_monitor
echo "esp_monitor not found" checkAlias esp_logs
fi checkAlias notarealone
alias esp_logs #2>/dev/null # if [ -z $ESPIDF_INSTALLDIR ]; then
ret=$? # echo "ESPIDF_INSTALLDIR not found"
if [ $ret -eq 1 ]; then # else
echo "esp_monitor not found" # echo "ESPIDF_INSTALLDIR: $ESPIDF_INSTALLDIR"
fi # fi
if [ -z $ESPIDF_INSTALLDIR ]; then
echo "ESPIDF_INSTALLDIR not found"
fi
+1 -1
View File
@@ -1 +1 @@
61-beta4.3.4 61-beta4.3.5