diff options
author | Varriount <Varriount@users.noreply.github.com> | 2014-08-02 00:16:10 -0400 |
---|---|---|
committer | Varriount <Varriount@users.noreply.github.com> | 2014-08-02 00:16:10 -0400 |
commit | 23f64dd63d6c8f178f5fca1ec6e7706844808359 (patch) | |
tree | ae40709f33342b74ea6888485ccd3933bc5d0d4d | |
parent | 9b4b4bcbc5b6464da31b75ab6bf529066bf8315d (diff) | |
download | Nim-23f64dd63d6c8f178f5fca1ec6e7706844808359.tar.gz |
Update commands.nim
-rw-r--r-- | compiler/commands.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim index 4fec420f7..7219c168a 100644 --- a/compiler/commands.nim +++ b/compiler/commands.nim @@ -291,14 +291,12 @@ proc processSwitch(switch, arg: string, pass: TCmdLinePass, info: TLineInfo) = of "excludepath": expectArg(switch, arg, pass, info) let path = processPath(arg) - echo repr(options.searchPaths) lists.excludePath(options.searchPaths, path) lists.excludePath(options.lazyPaths, path) if (len(path) > 0) and (path[len(path) - 1] == DirSep): let strippedPath = path[0 .. (len(path) - 2)] lists.excludePath(options.searchPaths, strippedPath) lists.excludePath(options.lazyPaths, strippedPath) - echo repr(options.searchPaths) of "nimcache": expectArg(switch, arg, pass, info) options.nimcacheDir = processPath(arg) |