File tree 1 file changed +0
-9
lines changed
1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,13 @@ TARGET="all"
14
14
BUILD_TYPE=" all"
15
15
SKIP_ENV=0
16
16
COPY_OUT=0
17
- DEPLOY_OUT=0
18
17
19
18
function print_help() {
20
19
echo " Usage: build.sh [-s] [-A <arduino_branch>] [-I <idf_branch>] [-i <idf_commit>] [-c <path>] [-t <target>] [-b <build|menuconfig|idf_libs|copy_bootloader|mem_variant>] [config ...]"
21
20
echo " -s Skip installing/updating of ESP-IDF and all components"
22
21
echo " -A Set which branch of arduino-esp32 to be used for compilation"
23
22
echo " -I Set which branch of ESP-IDF to be used for compilation"
24
23
echo " -i Set which commit of ESP-IDF to be used for compilation"
25
- echo " -d Deploy the build to github arduino-esp32"
26
24
echo " -c Set the arduino-esp32 folder to copy the result to. ex. '$HOME /Arduino/hardware/espressif/esp32'"
27
25
echo " -t Set the build target(chip). ex. 'esp32s3'"
28
26
echo " -b Set the build type. ex. 'build' to build the project and prepare for uploading to a board"
@@ -35,9 +33,6 @@ while getopts ":A:I:i:c:t:b:sd" opt; do
35
33
s )
36
34
SKIP_ENV=1
37
35
;;
38
- d )
39
- DEPLOY_OUT=1
40
- ;;
41
36
c )
42
37
export ESP32_ARDUINO=" $OPTARG "
43
38
COPY_OUT=1
195
190
if [ $COPY_OUT -eq 1 ] && [ -d " $ESP32_ARDUINO " ]; then
196
191
./tools/copy-to-arduino.sh
197
192
fi
198
-
199
- if [ $DEPLOY_OUT -eq 1 ]; then
200
- ./tools/push-to-arduino.sh
201
- fi
You can’t perform that action at this time.
0 commit comments