We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c490af2 commit dbaf3e7Copy full SHA for dbaf3e7
build.sh
@@ -318,7 +318,11 @@ export IDF_COMMIT=$(git -C "$IDF_PATH" rev-parse --short HEAD)
318
319
# Generate PlatformIO library manifest file
320
if [ "$BUILD_TYPE" = "all" ]; then
321
- python3 ./tools/gen_pio_lib_manifest.py -o "$TOOLS_JSON_OUT/" -s "v$IDF_VERSION" -c "$IDF_COMMIT"
+ pushd $IDF_PATH
322
+ ibr=$(git describe --all --exact-match 2>/dev/null)
323
+ ic=$(git -C "$IDF_PATH" rev-parse --short HEAD)
324
+ popd
325
+ python3 ./tools/gen_pio_lib_manifest.py -o "$TOOLS_JSON_OUT/" -s "$ibr" -c "$ic"
326
if [ $? -ne 0 ]; then exit 1; fi
327
fi
328
0 commit comments