summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
authorFederico Ceratto <federico.ceratto@gmail.com>2016-06-10 16:17:40 +0100
committerGitHub <noreply@github.com>2016-06-10 16:17:40 +0100
commit75abb0fcbd817f8974be16c74f4f5abcc29c179d (patch)
tree51859f9aba2ec81a4c56a1d0f809130f2f4e8e96 /koch.nim
parent8662e140b409b56bc16ce9e1a079dae5745cf0d3 (diff)
downloadNim-75abb0fcbd817f8974be16c74f4f5abcc29c179d.tar.gz
Fix tar usage in testinstall
Diffstat (limited to 'koch.nim')
-rw-r--r--koch.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim
index 4737d4a92..9ccc752c0 100644
--- a/koch.nim
+++ b/koch.nim
@@ -112,7 +112,7 @@ proc testUnixInstall() =
     copyFile("build/nim-$1.tar.xz" % VersionAsString,
              destDir / "nim-$1.tar.xz" % VersionAsString)
     setCurrentDir(destDir)
-    execCleanPath("tar -xzf nim-$1.tar.xz" % VersionAsString)
+    execCleanPath("tar -xJf nim-$1.tar.xz" % VersionAsString)
     setCurrentDir("nim-$1" % VersionAsString)
     execCleanPath("sh build.sh")
     # first test: try if './bin/nim --version' outputs something sane: