From 511b6ae27c1aae27c3f7bb8aed83245a752d4f4c Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 12 Jul 2019 10:11:34 +0200 Subject: [PATCH] koch temp bugfix --- koch.nim | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/koch.nim b/koch.nim index e3d197640e..bb8e57c458 100644 --- a/koch.nim +++ b/koch.nim @@ -441,10 +441,9 @@ proc temp(args: string) = let d = getAppDir() var output = d / "compiler" / "nim".exe var finalDest = d / "bin" / "nim_temp".exe - # 125 is the magic number to tell git bisect to skip the current - # commit. + # 125 is the magic number to tell git bisect to skip the current commit. var (bootArgs, programArgs) = splitArgs(args) - if "doc" notin programArgs and "threads" notin programArgs: + if "doc" notin programArgs and "threads" notin programArgs and "js" notin programArgs: bootArgs.add " -d:leanCompiler" let nimexec = findNim() exec(nimexec & " c -d:debug --debugger:native " & bootArgs & " " & (d / "compiler" / "nim"), 125)