mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-10 13:48:10 +00:00
./koch --nonexistant now fails (#18036)
This commit is contained in:
9
koch.nim
9
koch.nim
@@ -634,9 +634,9 @@ proc valgrind(cmd: string) =
|
||||
let supp = getAppDir() / "tools" / "nimgrind.supp"
|
||||
exec("valgrind --suppressions=" & supp & valcmd)
|
||||
|
||||
proc showHelp() =
|
||||
proc showHelp(success: bool) =
|
||||
quit(HelpText % [VersionAsString & spaces(44-len(VersionAsString)),
|
||||
CompileDate, CompileTime], QuitSuccess)
|
||||
CompileDate, CompileTime], if success: QuitSuccess else: QuitFailure)
|
||||
|
||||
proc branchDone() =
|
||||
let thisBranch = execProcess("git symbolic-ref --short HEAD").strip()
|
||||
@@ -656,6 +656,7 @@ when isMainModule:
|
||||
case op.kind
|
||||
of cmdLongOption, cmdShortOption:
|
||||
case normalize(op.key)
|
||||
of "help", "h": showHelp(success = true)
|
||||
of "latest": latest = true
|
||||
of "stable": latest = false
|
||||
of "nim": nimExe = op.val.absolutePath # absolute so still works with changeDir
|
||||
@@ -663,7 +664,7 @@ when isMainModule:
|
||||
localDocsOnly = true
|
||||
if op.val.len > 0:
|
||||
localDocsOut = op.val.absolutePath
|
||||
else: showHelp()
|
||||
else: showHelp(success = false)
|
||||
of cmdArgument:
|
||||
case normalize(op.key)
|
||||
of "boot": boot(op.cmdLineRest)
|
||||
@@ -705,6 +706,6 @@ when isMainModule:
|
||||
exec("nimble install -y fusion@$#" % suffix)
|
||||
of "ic": icTest(op.cmdLineRest)
|
||||
of "branchdone": branchDone()
|
||||
else: showHelp()
|
||||
else: showHelp(success = false)
|
||||
break
|
||||
of cmdEnd: break
|
||||
|
||||
Reference in New Issue
Block a user