Skip to content
This repository was archived by the owner on May 4, 2026. It is now read-only.

Commit a253ab6

Browse files
authored
fix(platformio): Remove $PROJECT_DIR from all relevant paths.
A recent update to PlatformIO caused the build/compile/verify process to fail on _all_ PlatformIO targets. This is the fix for that.
1 parent 0fda7be commit a253ab6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

platformio.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ extra_configs =
1111
targets/seeed_studio_samd21.ini
1212
targets/sparkfun_unified_esp32.ini
1313
targets/teensy_unified.ini
14-
core_dir = $PROJECT_DIR/.pio/core
15-
include_dir = $PROJECT_DIR/src/platformio/include
16-
lib_dir = $PROJECT_DIR/src
17-
src_dir = $PROJECT_DIR/examples/platformio
18-
test_dir = $PROJECT_DIR/src/platformio/test
14+
core_dir = .pio/core
15+
include_dir = src/platformio/include
16+
lib_dir = src
17+
src_dir = examples/platformio
18+
test_dir = src/platformio/test

0 commit comments

Comments
 (0)