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 /src/main.nim | |
parent | b8a0d0e9245abaa287a28c3c6ca217112dd38358 (diff) | |
download | chawan-d7cdd61ecc10d6cf2a5b89f0b16bbbf4bed95437.tar.gz |
Fix casing
Diffstat (limited to 'src/main.nim')
-rw-r--r-- | src/main.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.nim b/src/main.nim index 2840034c..fc78a78b 100644 --- a/src/main.nim +++ b/src/main.nim @@ -236,7 +236,7 @@ proc initConfig(ctx: ParamParseContext; config: Config; const libexecPath {.strdefine.} = "$CHA_BIN_DIR/../libexec/chawan" proc main() = - putEnv("CHA_BIN_DIR", getAppFileName().untilLast('/')) + putEnv("CHA_BIN_DIR", getAppFilename().untilLast('/')) putEnv("CHA_LIBEXEC_DIR", ChaPath(libexecPath).unquoteGet()) let forkserver = newForkServer() let urandom = newPosixStream("/dev/urandom", O_RDONLY, 0) |