diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2012-04-11 12:36:32 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2012-04-11 12:36:32 +0200 |
commit | 3b4d8136e78b9f2a70431ece4c850861d90e8bb1 (patch) | |
tree | d1371eb34a5b990d82bd69bf94e0ddeb48f5c01b /test/integration/test-releasefile-verification | |
parent | fdfdba56b128acf59b40edfdde0dd95fdd9c4439 (diff) |
fix the remaining lzma calls with xz --format=lzma in the testcases
Diffstat (limited to 'test/integration/test-releasefile-verification')
-rwxr-xr-x | test/integration/test-releasefile-verification | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/test-releasefile-verification b/test/integration/test-releasefile-verification index 4f65cfa3b..d3ea91de5 100755 --- a/test/integration/test-releasefile-verification +++ b/test/integration/test-releasefile-verification @@ -24,7 +24,7 @@ prepare() { find aptarchive -name 'Release' -delete cat aptarchive/Packages | gzip > aptarchive/Packages.gz cat aptarchive/Packages | bzip2 > aptarchive/Packages.bz2 - cat aptarchive/Packages | lzma > aptarchive/Packages.lzma + cat aptarchive/Packages | xz --format=lzma > aptarchive/Packages.lzma generatereleasefiles "$DATE" } |