diff options
Diffstat (limited to 'test/net/run.nim')
-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: |