diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-01-22 10:51:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 19:51:11 +0100 |
commit | 18b983d7e3525787d0d0c5e767f62dab67e9329f (patch) | |
tree | e3ac7a83b12f37cc2a9c5d14484ef0537cb18bdf /tests/manyloc/keineschweine | |
parent | 8f1f0bd1daedfe96b1dd1cf248057be516e1d186 (diff) | |
download | Nim-18b983d7e3525787d0d0c5e767f62dab67e9329f.tar.gz |
addQuitProc => addExitProc (#16765)
Diffstat (limited to 'tests/manyloc/keineschweine')
-rw-r--r-- | tests/manyloc/keineschweine/dependencies/nake/nake.nim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/manyloc/keineschweine/dependencies/nake/nake.nim b/tests/manyloc/keineschweine/dependencies/nake/nake.nim index bc380986f..e466ee5e1 100644 --- a/tests/manyloc/keineschweine/dependencies/nake/nake.nim +++ b/tests/manyloc/keineschweine/dependencies/nake/nake.nim @@ -7,6 +7,10 @@ contents thereof. As said in the Olde Country, `Keepe it Gangster'.""" +#[ +xxx remove this? seems mostly duplicate of: tests/manyloc/nake/nake.nim +]# + import strutils, parseopt, tables, os type @@ -60,7 +64,8 @@ when true: args.add " " quit(shell("nim", "c", "-r", "nakefile.nim", args)) else: - addQuitProc(proc() {.noconv.} = + import std/exitprocs + addExitProc(proc() {.noconv.} = var task: string printTaskList: bool |