Skip to content

Commit 69b68e2

Browse files
authored
ESP32: Don't run pkg install on build (#11243)
pioarduino runs this anyways. No need to do it twice.
1 parent 2c8a2a8 commit 69b68e2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

bin/build-esp32.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ rm -f $OUTDIR/firmware*
1212
rm -r $OUTDIR/* || true
1313

1414
# Important to pull latest version of libs into all device flavors, otherwise some devices might be stale
15-
platformio pkg install -e $1
15+
# platformio pkg install -e $1
16+
# ...redundant with pioarduino
1617

1718
echo "Building for $1 with $PLATFORMIO_BUILD_FLAGS"
1819
rm -f $BUILDDIR/firmware*

0 commit comments

Comments
 (0)