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
+22 -23
View File
@@ -1,27 +1,26 @@
alias get_idf #2>/dev/null
ret=$?
if [ $ret -eq 1 ]; then
echo "get_idf not found"
fi
function checkAlias() {
echo "Testing $1"
alias $1 2>/dev/null
ret=$?
echo "\tretcode: $ret"
if [ $ret -eq 1 ]; then
echo "$1 not found"
else
echo "$1: $(alias $1)"
fi
alias run_esp_reinstall #2>/dev/null
ret=$?
if [ $ret -eq 1 ]; then
echo "run_esp_reinstall not found"
fi
return $ret
}
alias esp_monitor #2>/dev/null
ret=$?
if [ $ret -eq 1 ]; then
echo "esp_monitor not found"
fi
checkAlias get_idf
checkAlias run_esp_reinstall
checkAlias esp_monitor
checkAlias esp_logs
checkAlias notarealone
alias esp_logs #2>/dev/null
ret=$?
if [ $ret -eq 1 ]; then
echo "esp_monitor not found"
fi
# if [ -z $ESPIDF_INSTALLDIR ]; then
# echo "ESPIDF_INSTALLDIR not found"
# else
# echo "ESPIDF_INSTALLDIR: $ESPIDF_INSTALLDIR"
# 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