diff options
author | alaviss <leorize+oss@disroot.org> | 2020-05-27 06:33:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 08:33:24 +0200 |
commit | 0533c435471a1f4e1df27246e238ad5609e857da (patch) | |
tree | 1c968878a39d7eaabd0e9277bbcace80b000eead /tools/niminst | |
parent | dadc97d91e6ece6387195bdaad54baa9d3f0fc12 (diff) | |
download | Nim-0533c435471a1f4e1df27246e238ad5609e857da.tar.gz |
Revert "niminst: use threaded compression when supported (#14455)" (#14462)
This reverts commit b749d58ea1d77aab0ab758a17140ebc57e32f8c8.
Diffstat (limited to 'tools/niminst')
-rw-r--r-- | tools/niminst/niminst.nim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/niminst/niminst.nim b/tools/niminst/niminst.nim index e170bc5d7..4746f328a 100644 --- a/tools/niminst/niminst.nim +++ b/tools/niminst/niminst.nim @@ -700,10 +700,8 @@ RunProgram="tools\downloader.exe" if execShellCmd("tar cf $1.tar $1" % proj) != 0: echo("External program failed") - if execShellCmd("xz -T0 -9f $1.tar" % proj) != 0: - # Maybe the xz version is too old and doesn't support threading - if execShellCmd("xz -9f $1.tar" % proj) != 0: - echo("External program failed") + if execShellCmd("xz -9f $1.tar" % proj) != 0: + echo("External program failed") finally: setCurrentDir(oldDir) |