diff options
Diffstat (limited to 'compiler/main.nim')
-rwxr-xr-x | compiler/main.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/main.nim b/compiler/main.nim index dabd5309b..edd4fda68 100755 --- a/compiler/main.nim +++ b/compiler/main.nim @@ -279,11 +279,11 @@ proc MainCommand = gCmd = cmdGenDepend wantMainModule() CommandGenDepend() - of "dump": + of "dump": gCmd = cmdDump condsyms.ListSymbols() - for it in iterSearchPath(): MsgWriteln(it) - of "check": + for it in iterSearchPath(searchPaths): MsgWriteln(it) + of "check": gCmd = cmdCheck wantMainModule() CommandCheck() |