niminst: less verbose output in a desparate attempt to make travis green again

This commit is contained in:
Andreas Rumpf
2017-02-05 11:06:06 +01:00
parent e672208b82
commit 6382293255

View File

@@ -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