11 lines
282 B
Bash
11 lines
282 B
Bash
DECKENLAMPE_ROOT="$(dirname "$BASH_SOURCE")"
|
|
|
|
if [[ ! -f "${DECKENLAMPE_ROOT}/esp-idf/export.sh" ]]
|
|
then
|
|
echo "esp-idf is missing, please check out all needed submodules!"
|
|
echo "git submodule update --init --recursive"
|
|
return
|
|
fi
|
|
|
|
. ${DECKENLAMPE_ROOT}/esp-idf/export.sh
|