diff options
author | Araq <rumpf_a@web.de> | 2018-09-21 01:26:07 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-09-21 01:26:07 +0200 |
commit | 69de5ad53ccd1afaa3f912faeb47211912e9d55f (patch) | |
tree | 1043c58baa90df7a47ae2e27970cc8bad5d352f6 /tools | |
parent | 113b530a52239adf7f7b626d2bb4a401e04edefe (diff) | |
download | Nim-69de5ad53ccd1afaa3f912faeb47211912e9d55f.tar.gz |
niminst: fix gtar invokation
Diffstat (limited to 'tools')
-rw-r--r-- | tools/niminst/niminst.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/niminst/niminst.nim b/tools/niminst/niminst.nim index 84653f86f..ff2537e00 100644 --- a/tools/niminst/niminst.nim +++ b/tools/niminst/niminst.nim @@ -684,7 +684,7 @@ RunProgram="tools\downloader.exe" if execShellCmd("7z a -sfx7zS2.sfx -t7z $1.exe $1" % proj) != 0: echo("External program failed (7z)") else: - if execShellCmd("gtar cf $1.tar $1 --exclude=.DS_Store" % + if execShellCmd("gtar --exclude=.DS_Store cf $1.tar $1" % proj) != 0: # try old 'tar' without --exclude feature: if execShellCmd("tar cf $1.tar $1" % proj) != 0: |