From 32c6b35d97332e884648929672b0f163ee6febff Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 14 Dec 2018 12:00:49 +0100 Subject: [PATCH] fixes yet another NimScript regression --- compiler/cmdlinehelper.nim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/cmdlinehelper.nim b/compiler/cmdlinehelper.nim index 7656a11f96..13090ce9ca 100644 --- a/compiler/cmdlinehelper.nim +++ b/compiler/cmdlinehelper.nim @@ -66,6 +66,8 @@ proc loadConfigsAndRunMainCommand*(self: NimProg, cache: IdentCache; conf: Confi initDefines(tempConf.symbols) tempConf.command = conf.command tempConf.commandArgs = conf.commandArgs + tempConf.searchPaths = conf.searchPaths + tempConf.lazyPaths = conf.lazyPaths runNimScript(cache, p, freshDefines = false, tempConf) mergeConfigs(conf, tempConf)