diff --git a/build_all.bat b/build_all.bat index ef4a5f6a4e..bef7956f28 100644 --- a/build_all.bat +++ b/build_all.bat @@ -24,6 +24,6 @@ if not exist %nim_csources% ( cd .. copy /y bin\nim.exe %nim_csources% ) - bin\nim.exe c --noNimblePath --skipUserCfg --skipParentCfg --hints:off koch - koch boot -d:release --skipUserCfg --skipParentCfg --hints:off - koch tools --skipUserCfg --skipParentCfg --hints:off +bin\nim.exe c --noNimblePath --skipUserCfg --skipParentCfg --hints:off koch +koch boot -d:release --skipUserCfg --skipParentCfg --hints:off +koch tools --skipUserCfg --skipParentCfg --hints:off diff --git a/tools/ci_generate.nim b/tools/ci_generate.nim index 46bc39470f..a461be5915 100644 --- a/tools/ci_generate.nim +++ b/tools/ci_generate.nim @@ -42,9 +42,9 @@ triggers: proc genBuildExtras(echoRun, koch, nim: string): string = result = fmt""" -{echoRun} {nim} c --noNimblePath --skipUserCfg --skipParentCfg --hints:off koch -{echoRun} {koch} boot -d:release --skipUserCfg --skipParentCfg --hints:off -{echoRun} {koch} tools --skipUserCfg --skipParentCfg --hints:off +{echoRun}{nim} c --noNimblePath --skipUserCfg --skipParentCfg --hints:off koch +{echoRun}{koch} boot -d:release --skipUserCfg --skipParentCfg --hints:off +{echoRun}{koch} tools --skipUserCfg --skipParentCfg --hints:off """ proc genWindowsScript(buildAll: bool): string = @@ -95,7 +95,7 @@ set -e # exit on first error . ci/funs.sh nimBuildCsourcesIfNeeded "$@" -{genBuildExtras("echo_run", "./koch", "bin/nim")} +{genBuildExtras("echo_run ", "./koch", "bin/nim")} """ proc main()=