From d783c0f7ff51e85d85bb7c85d2d2c9556cfcbe60 Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Thu, 10 Oct 2019 11:56:01 +0200 Subject: fixes a koch regression that made 'koch boot --listcmd' not work anymore [backport] (#12400) --- koch.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'koch.nim') diff --git a/koch.nim b/koch.nim index 083394e00..a0a7dd903 100644 --- a/koch.nim +++ b/koch.nim @@ -320,8 +320,8 @@ proc boot(args: string) = # jsonbuild then uses the $project.json file to build the Nim binary. exec "$# $# $# $# --nimcache:$# --compileOnly compiler" / "nim.nim" % [nimi, bootOptions, extraOption, args, smartNimcache] - exec "$# jsonscript --nimcache:$# compiler" / "nim.nim" % - [nimi, smartNimcache] + exec "$# jsonscript $# --nimcache:$# compiler" / "nim.nim" % + [nimi, args, smartNimcache] if sameFileContent(output, i.thVersion): copyExe(output, finalDest) -- cgit 1.4.1-2-gfad0 type='submit' value='switch'/> This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)ahoang <ahoang@tilde.institute>
summary refs log blame commit diff stats
path: root/tests/closure/tboehmdeepcopy.nim
blob: 79ac5797aa16dd07f069966e0eb2f98b5a70bc06 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17