diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-11-20 01:51:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-20 10:51:14 +0100 |
commit | 7815ed69d4a3fc7b96c397c7820cef290f5b0a4d (patch) | |
tree | 2dc1fa4abd4b14140ff0f5f44cd9836697dc9191 /tools | |
parent | 6cf5ca1dc2c1c0388e0998a24d26f4a9c9b7e60e (diff) | |
download | Nim-7815ed69d4a3fc7b96c397c7820cef290f5b0a4d.tar.gz |
rename loadConfigsAndRunMainCommand => loadConfigsAndProcessCmdLine, reflect reality (#16057)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/nimfind.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nimfind.nim b/tools/nimfind.nim index f13e86aaa..b120ccd1f 100644 --- a/tools/nimfind.nim +++ b/tools/nimfind.nim @@ -228,7 +228,7 @@ proc handleCmdLine(cache: IdentCache; conf: ConfigRef) = conf.prefixDir = AbsoluteDir"" var graph = newModuleGraph(cache, conf) - if self.loadConfigsAndRunMainCommand(cache, conf, graph): + if self.loadConfigsAndProcessCmdLine(cache, conf, graph): mainCommand(graph) handleCmdLine(newIdentCache(), newConfigRef()) |