aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2016-10-27 13:38:04 +0200
committerEike Ziller <eike.ziller@qt.io>2016-10-28 08:50:00 +0000
commit4f06d084fcee59911821add6cca54d94f03ab1b3 (patch)
tree91a967f2c980f45c017053f6d2b1df0ef79c26e8 /scripts
parentc1e600a41dd8454a2a3275e95d6ab2b5a4bf6438 (diff)
Source packages: Fix that tar.xz was not xz but gz
Change-Id: I5379cdfe963f53cca04317ea51f544c40743db7b Reviewed-by: Iikka Eklund <iikka.eklund@qt.io>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/createSourcePackages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/createSourcePackages.py b/scripts/createSourcePackages.py
index d6e89a85fa..af99704ac3 100755
--- a/scripts/createSourcePackages.py
+++ b/scripts/createSourcePackages.py
@@ -78,7 +78,7 @@ def package_repos(repos, combined_prefix, target_file_base):
print('Creating .tar.gz...')
createTarGz(archive_path(crlf=False), target_file_base + '.tar.gz')
print('Creating .tar.xz...')
- createTarGz(archive_path(crlf=False), target_file_base + '.tar.xz')
+ createTarXz(archive_path(crlf=False), target_file_base + '.tar.xz')
print('Creating .zip with CRLF...')
createZip(archive_path(crlf=True), target_file_base + '.zip')
print('Removing temporary directory...')