change the date
[tools/build.git] / debtransformxz
1 #!/bin/sh
2 if test $# -ne 2; then
3         exit 1
4 fi
5 xz -cd "$1" | gzip -f - >"$2" || exit 1
6 exit 0