diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-06-24 00:58:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-24 00:58:11 -0700 |
commit | 55c1953f636ff2d2e2b9e9599194fa6c3fb49050 (patch) | |
tree | e6d5c272c9b4786fe73fa04cc1962bb4f515a05a /koch.nim | |
parent | f258e4e70c31b6e051d4333615a37a29b30aa0b9 (diff) | |
download | Nim-55c1953f636ff2d2e2b9e9599194fa6c3fb49050.tar.gz |
fix #18334: handle path with spaces on windows during bootstrap (#18337)
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index 665b5e042..51be53cc7 100644 --- a/koch.nim +++ b/koch.nim @@ -308,7 +308,7 @@ proc boot(args: string) = var nimi = i.thVersion if i == 0: nimi = nimStart - extraOption.add " --skipUserCfg --skipParentCfg" + extraOption.add " --skipUserCfg --skipParentCfg -d:nimKochBootstrap" # The configs are skipped for bootstrap # (1st iteration) to prevent newer flags from breaking bootstrap phase. let ret = execCmdEx(nimStart & " --version") |