Skip to content

Commit edcb284

Browse files
committed
Check for .tar.xz instead of .tar.gz when publishing Debian package
In #726 we moved to a more modern Debian package format but failed to take into account the necessary changes to the package-deb script, which now needed to expect a `.tar.xz` instead of a `.tar.gz`.
1 parent 3c8fb71 commit edcb284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/package-deb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ git checkout -q "$PKG_HEAD"
2626

2727
debuild -uc -us 1>&2
2828
cd ..
29-
files=$(ls -1 *.deb *.tar.gz *.dsc *.changes)
29+
files=$(ls -1 *.deb *.tar.xz *.dsc *.changes)
3030
mv $files ../
3131
for f in $files; do echo "dist/$f"; done

0 commit comments

Comments
 (0)