diff options
author | bptato <nincsnevem662@gmail.com> | 2024-12-05 22:07:53 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-12-05 22:17:52 +0100 |
commit | d7cdd61ecc10d6cf2a5b89f0b16bbbf4bed95437 (patch) | |
tree | 1ea258553058c71fd7f1e1f77eca646343784ce1 /test | |
parent | b8a0d0e9245abaa287a28c3c6ca217112dd38358 (diff) | |
download | chawan-d7cdd61ecc10d6cf2a5b89f0b16bbbf4bed95437.tar.gz |
Fix casing
Diffstat (limited to 'test')
-rw-r--r-- | test/net/run.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/net/run.nim b/test/net/run.nim index a88c9501..b62f099a 100644 --- a/test/net/run.nim +++ b/test/net/run.nim @@ -33,7 +33,7 @@ proc main() {.async.} = let port = server.getPort() case fork() of 0: - let cmd = getAppFileName().untilLast('/') & "/run.sh " & $uint16(port) + let cmd = getAppFilename().untilLast('/') & "/run.sh " & $uint16(port) discard execl("/bin/sh", "sh", "-c", cstring(cmd), nil) quit(1) of -1: |