Skip to content

Commit 91ccba1

Browse files
committed
Fix notarized MacOS artifact tarball.
1 parent 9703bcd commit 91ccba1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.azure-pipelines/templates/macos-notarize.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ stages:
186186
7z a -tzip -mx=9 "-p$ARTIFACT_PASSWORD" -mem=AES256 "SerialPrograms-MacOS-$(compiler)-$(architecture).$EXT" "$FOLDER_NAME"
187187
else
188188
echo "=== Creating tarball with enclosing folder ==="
189-
tar -I "gzip -9" -czf "SerialPrograms-MacOS-$(compiler)-$(architecture).$EXT" "$FOLDER_NAME"
189+
tar -cf - "$FOLDER_NAME" | gzip -9 > "SerialPrograms-MacOS-$(compiler)-$(architecture).$EXT"
190190
fi
191191
192192
echo "=== Creating cache directory and moving tarball ==="

0 commit comments

Comments
 (0)