We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2967a6 commit 9ea537fCopy full SHA for 9ea537f
tools/compile_slave.sh
@@ -12,8 +12,9 @@ source ./tools/install-esp-idf.sh
12
if [ $? -ne 0 ]; then exit 1; fi
13
14
# use fork until upstream bugs are fixed
15
-git clone https://github.com/Jason2866/esp-hosted-mcu.git
16
-cd esp-hosted-mcu/slave
+git clone --depth 1 https://github.com/Jason2866/esp-hosted-mcu.git || {
+ echo "Failed to clone esp-hosted-mcu"; exit 1; }
17
+cd esp-hosted-mcu/slave || exit 1
18
mkdir wifi_copro_fw
19
20
slave_targets=(
0 commit comments