mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 13:07:48 +00:00
Adds skipParentCfg back. Bump nimble to a commit where it doesnt rely in the parent config (#24545)
(cherry picked from commit 8ce58fab26)
This commit is contained in:
@@ -26,4 +26,4 @@ if not exist %nim_csources% (
|
||||
)
|
||||
bin\nim.exe c --noNimblePath --skipUserCfg --skipParentCfg --hints:off koch
|
||||
koch boot -d:release --skipUserCfg --skipParentCfg --hints:off
|
||||
koch tools --skipUserCfg --hints:off
|
||||
koch tools --skipUserCfg --skipParentCfg --hints:off
|
||||
|
||||
@@ -13,5 +13,5 @@ nimBuildCsourcesIfNeeded "$@"
|
||||
|
||||
echo_run bin/nim c --noNimblePath --skipUserCfg --skipParentCfg --hints:off koch
|
||||
echo_run ./koch boot -d:release --skipUserCfg --skipParentCfg --hints:off
|
||||
echo_run ./koch tools --skipUserCfg --hints:off
|
||||
echo_run ./koch tools --skipUserCfg --skipParentCfg --hints:off
|
||||
|
||||
|
||||
2
koch.nim
2
koch.nim
@@ -11,7 +11,7 @@
|
||||
|
||||
const
|
||||
# examples of possible values for repos: Head, ea82b54
|
||||
NimbleStableCommit = "4e7e646b9819b72044e5262c2800e9f7ccfd1b16" # 0.16.4
|
||||
NimbleStableCommit = "123f97a5e4ee9ba35720c0869e19a047c43c797e" # 0.16.4
|
||||
AtlasStableCommit = "5faec3e9a33afe99a7d22377dd1b45a5391f5504"
|
||||
ChecksumsStableCommit = "bd9bf4eaea124bf8d01e08f92ac1b14c6879d8d3"
|
||||
SatStableCommit = "faf1617f44d7632ee9601ebc13887644925dcc01"
|
||||
|
||||
@@ -44,7 +44,7 @@ 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 --hints:off
|
||||
{echoRun}{koch} tools --skipUserCfg --skipParentCfg --hints:off
|
||||
"""
|
||||
|
||||
proc genWindowsScript(buildAll: bool): string =
|
||||
|
||||
Reference in New Issue
Block a user