mch2022-template-app/command.sh

19 lines
281 B
Bash
Raw Normal View History

2022-01-11 23:53:38 +00:00
#!/usr/bin/env bash
set -e
2022-01-11 23:53:38 +00:00
set -u
2022-01-11 23:53:38 +00:00
export IDF_PATH="$PWD/esp-idf"
export IDF_EXPORT_QUIET=0
source "$IDF_PATH"/export.sh
if [ "$#" -eq 2 ]; then
idf.py $2 -p $1
else
if [ "$#" -ne 1 ]; then
echo "Illegal number of parameters"
else
idf.py $1
fi
fi