Files
esp-idf-tools/test-scratch.sh
T
2024-11-13 02:21:59 -07:00

27 lines
458 B
Bash

alias get_idf #2>/dev/null
ret=$?
if [ $ret -eq 1 ]; then
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