Merge pull request #1438 from def-/tools-compiling

Make nimrepl and trimcc tools compile
This commit is contained in:
Andreas Rumpf
2014-08-02 09:35:51 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ proc execCode(code: string): string =
f.close()
result = osproc.execProcess(
"$# $# --verbosity:0 --hint[Conf]:off temp.nim" % [nimExe, runCmd],
{poStdErrToStdOut})
options = {poStdErrToStdOut})
else:
result = "cannot open file 'temp.nim'"

View File

@@ -18,7 +18,7 @@ proc walker(dir: string) =
else:
echo "Required: ", path
# copy back:
moveFile(dest=path, sourc=newName(path))
moveFile(dest=path, source=newName(path))
of pcDir:
walker(path)
else: discard