We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf616da commit 7c466b9Copy full SHA for 7c466b9
build.sh
@@ -244,7 +244,11 @@ fi
244
245
# Generate PlatformIO manifest file
246
if [ "$BUILD_TYPE" = "all" ]; then
247
- python3 ./tools/gen_platformio_manifest.py -o "$TOOLS_JSON_OUT/" -s $(git -C "$IDF_PATH" symbolic-ref --short HEAD || git -C "$IDF_PATH" tag --points-at HEAD) -c $(git -C "$IDF_PATH" rev-parse --short HEAD)
+ pushd $IDF_PATH
248
+ ibr=$(git branch --show-current)
249
+ ic=$(git -C "$IDF_PATH" rev-parse --short HEAD)
250
+ popd
251
+ python3 ./tools/gen_platformio_manifest.py -o "$TOOLS_JSON_OUT/" -s "$ibr" -c "$ic"
252
if [ $? -ne 0 ]; then exit 1; fi
253
fi
254
0 commit comments