From eaffb20df57b7e04cb95d74cd9fa9753d26dd0c6 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Tue, 10 Dec 2024 10:42:46 -0600 Subject: [PATCH] Remove {.gcsafe.} from procutils.exec. --- cliutils.nimble | 2 +- cliutils/config.nim | 4 ++-- cliutils/procutil.nim | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cliutils.nimble b/cliutils.nimble index 8c5d206..d6b2954 100644 --- a/cliutils.nimble +++ b/cliutils.nimble @@ -1,6 +1,6 @@ # Package -version = "0.9.0" +version = "0.9.1" author = "Jonathan Bernard" description = "Helper functions for writing command line interfaces." license = "MIT" diff --git a/cliutils/config.nim b/cliutils/config.nim index 4e631cf..fe25b09 100644 --- a/cliutils/config.nim +++ b/cliutils/config.nim @@ -6,13 +6,13 @@ type docopt*: Table[string, Value] json*: JsonNode -func keyNames(key: string): tuple[arg, env, json: string] {.raises: [KeyError].} = +proc keyNames(key: string): tuple[arg, env, json: string] {.raises: [KeyError].} = try: result = ( "--" & key, key.replace('-', '_').toUpper, key.replace(re"(-\w)", proc (m: RegexMatch): string = ($m)[1..1].toUpper)) - except CatchableError: + except Exception: raise newException(KeyError, "invalid config key: '" & key & "'") template walkFieldDefs*(t: NimNode, body: untyped) = diff --git a/cliutils/procutil.nim b/cliutils/procutil.nim index e269088..8f532c2 100644 --- a/cliutils/procutil.nim +++ b/cliutils/procutil.nim @@ -47,7 +47,7 @@ proc exec*(command: string, workingDir: string = "", args: openArray[string] = [], env: StringTableRef = nil, options: set[ProcessOption] = {poUsePath}, msgCB: HandleProcMsgCB = nil): int - {.tags: [ExecIOEffect, ReadIOEffect, RootEffect], gcsafe.} = + {.tags: [ExecIOEffect, ReadIOEffect, RootEffect].} = var p = startProcess(command, workingDir, args, env, options) result = waitFor(p, msgCB, command)