11 lines
199 B
Bash
Executable file
11 lines
199 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -u
|
|
|
|
# Fetch the SDK and all other submodules
|
|
git submodule update --init --recursive || exit 1
|
|
|
|
# Install the toolchain and other SDK tools
|
|
cd esp-idf
|
|
bash install.sh
|