61-beta4.3.4

This commit is contained in:
2024-11-13 02:21:59 -07:00
parent 1f254528a2
commit d1a46a60ad
2 changed files with 25 additions and 3 deletions
+24 -2
View File
@@ -1,5 +1,27 @@
alias get_idf 2>/dev/null
alias get_idf #2>/dev/null
ret=$?
if [ $ret -eq 1 ]; then
echo "aliasnant not found"
echo "get_idf not found"
fi
alias run_esp_reinstall #2>/dev/null
ret=$?
if [ $ret -eq 1 ]; then
echo "run_esp_reinstall not found"
fi
alias esp_monitor #2>/dev/null
ret=$?
if [ $ret -eq 1 ]; then
echo "esp_monitor not found"
fi
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"
fi