From 2ebd47089a5e551c28155f95f86d17a97284a0ce Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Thu, 10 Oct 2019 11:56:01 +0200 Subject: [PATCH] fixes a koch regression that made 'koch boot --listcmd' not work anymore [backport] (#12400) (cherry picked from commit d783c0f7ff51e85d85bb7c85d2d2c9556cfcbe60) --- koch.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koch.nim b/koch.nim index 083394e00b..a0a7dd903d 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)