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 /drnim/drnim.nim | |
parent | 6cf5ca1dc2c1c0388e0998a24d26f4a9c9b7e60e (diff) | |
download | Nim-7815ed69d4a3fc7b96c397c7820cef290f5b0a4d.tar.gz |
rename loadConfigsAndRunMainCommand => loadConfigsAndProcessCmdLine, reflect reality (#16057)
Diffstat (limited to 'drnim/drnim.nim')
-rw-r--r-- | drnim/drnim.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drnim/drnim.nim b/drnim/drnim.nim index b4761a398..d68175c83 100644 --- a/drnim/drnim.nim +++ b/drnim/drnim.nim @@ -1269,7 +1269,7 @@ proc handleCmdLine(cache: IdentCache; conf: ConfigRef) = self.processCmdLineAndProjectPath(conf) var graph = newModuleGraph(cache, conf) - if not self.loadConfigsAndRunMainCommand(cache, conf, graph): return + if not self.loadConfigsAndProcessCmdLine(cache, conf, graph): return mainCommand(graph) if conf.hasHint(hintGCStats): echo(GC_getStatistics()) |