Skip to content

Commit 08d45cc

Browse files
authored
rm deploy
1 parent df2a51d commit 08d45cc

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

build.sh

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,13 @@ TARGET="all"
1414
BUILD_TYPE="all"
1515
SKIP_ENV=0
1616
COPY_OUT=0
17-
DEPLOY_OUT=0
1817

1918
function print_help() {
2019
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 ...]"
2120
echo " -s Skip installing/updating of ESP-IDF and all components"
2221
echo " -A Set which branch of arduino-esp32 to be used for compilation"
2322
echo " -I Set which branch of ESP-IDF to be used for compilation"
2423
echo " -i Set which commit of ESP-IDF to be used for compilation"
25-
echo " -d Deploy the build to github arduino-esp32"
2624
echo " -c Set the arduino-esp32 folder to copy the result to. ex. '$HOME/Arduino/hardware/espressif/esp32'"
2725
echo " -t Set the build target(chip). ex. 'esp32s3'"
2826
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
3533
s )
3634
SKIP_ENV=1
3735
;;
38-
d )
39-
DEPLOY_OUT=1
40-
;;
4136
c )
4237
export ESP32_ARDUINO="$OPTARG"
4338
COPY_OUT=1
@@ -195,7 +190,3 @@ fi
195190
if [ $COPY_OUT -eq 1 ] && [ -d "$ESP32_ARDUINO" ]; then
196191
./tools/copy-to-arduino.sh
197192
fi
198-
199-
if [ $DEPLOY_OUT -eq 1 ]; then
200-
./tools/push-to-arduino.sh
201-
fi

0 commit comments

Comments
 (0)