diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-02-05 11:06:06 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-02-05 11:06:06 +0100 |
commit | 63822932556c9eb68eff08c8b60fefe518b0d9d2 (patch) | |
tree | ffd71e0763341fc42964f089407cad50216f53b4 /tools/niminst | |
parent | e672208b82494cb105c2c21e0604157724bb9816 (diff) | |
download | Nim-63822932556c9eb68eff08c8b60fefe518b0d9d2.tar.gz |
niminst: less verbose output in a desparate attempt to make travis green again
Diffstat (limited to 'tools/niminst')
-rw-r--r-- | tools/niminst/niminst.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/niminst/niminst.nim b/tools/niminst/niminst.nim index 4478151be..67f5e2b33 100644 --- a/tools/niminst/niminst.nim +++ b/tools/niminst/niminst.nim @@ -507,7 +507,7 @@ proc srcdist(c: var ConfigData) = if not existsDir(getOutputDir(c) / "c_code"): createDir(getOutputDir(c) / "c_code") for x in walkFiles(c.libpath / "lib/*.h"): - echo(getOutputDir(c) / "c_code" / extractFilename(x)) + when false: echo(getOutputDir(c) / "c_code" / extractFilename(x)) copyFile(dest=getOutputDir(c) / "c_code" / extractFilename(x), source=x) var winIndex = -1 var intel32Index = -1 @@ -624,7 +624,7 @@ proc xzDist(c: var ConfigData; windowsZip=false) = proc processFile(destFile, src: string) = let dest = tmpDir / destFile - echo "Copying ", src, " to ", dest + when false: echo "Copying ", src, " to ", dest if not existsFile(src): echo "[Warning] Source file doesn't exist: ", src let destDir = dest.splitFile.dir |