Skip to content

Commit ca84ea8

Browse files
committed
make script working when not used with GH Actions
1 parent 70b2d5b commit ca84ea8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/archive-build.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,7 @@ cd ../tools/esp32-arduino-libs
6464
rm -rf **/flags
6565
cd ../../../
6666

67-
# 7z a -mx=9 -tzip -xr'!.*' ../$pio_zip_archive_path framework-arduinoespressif32/
67+
68+
if [[ -z "$GITHUB_ACTIONS" ]]; then
69+
7z a -mx=9 -tzip -xr'!.*' ../$pio_zip_archive_path framework-arduinoespressif32/
70+
fi

0 commit comments

Comments
 (0)