Skip to content

Commit 4ecec71

Browse files
authored
Fix double-compression in ci_bundle-sources.sh
1 parent 979211c commit 4ecec71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ci_bundle-sources.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ set -xeuo pipefail
1212
TAG="$1"
1313
OUTPUT_PATH="opensimcreator-${TAG}-src.tar.xz"
1414

15-
git archive --format=tar.xz --prefix=opensimcreator-${TAG}/ ${TAG} | xz -c > ${OUTPUT_PATH}
15+
git archive --format=tar --prefix=opensimcreator-${TAG}/ ${TAG} | xz -c > ${OUTPUT_PATH}
1616
echo "source archive written to ${OUTPUT_PATH}"

0 commit comments

Comments
 (0)