summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-07-12 10:11:34 +0200
committerAraq <rumpf_a@web.de>2019-07-12 10:11:34 +0200
commit511b6ae27c1aae27c3f7bb8aed83245a752d4f4c (patch)
tree0b2daa5a4798a41335e0bea5748e0bbc32fb4d4d /koch.nim
parent2f0a50fa51f9dd42c0a8c51d4f86f81017b3c6f2 (diff)
downloadNim-511b6ae27c1aae27c3f7bb8aed83245a752d4f4c.tar.gz
koch temp bugfix
Diffstat (limited to 'koch.nim')
-rw-r--r--koch.nim5
1 files changed, 2 insertions, 3 deletions
diff --git a/koch.nim b/koch.nim
index e3d197640..bb8e57c45 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)