Skip to content

Commit

Permalink
tools/buildall.sh: Use gzip -f to overwrite existing archives.
Browse files Browse the repository at this point in the history
Also remove -k because we don't need the intermediate .tar file.
  • Loading branch information
xiaq committed Feb 11, 2024
1 parent d9bf352 commit 3bd3ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/buildall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ buildone() {
# two steps.
tar cf $BIN.tar $BIN
touch -d 2022-01-01T00:00:00Z $BIN.tar
gzip -k $BIN.tar
gzip -f $BIN.tar
fi
# Update the modification time again to reflect the actual modification
# time. (Technically this makes the file appear slightly newer han it really
Expand Down

0 comments on commit 3bd3ff3

Please sign in to comment.