diff options
author | bptato <nincsnevem662@gmail.com> | 2024-01-26 01:11:37 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-01-26 01:11:37 +0100 |
commit | 9b5df91240ea3e38e58d771597cb2a2c3ca95f29 (patch) | |
tree | 8d9d4fbe96682b27bc70bf415e050248d69dedae /src/config/chapath.nim | |
parent | fe9ac5f7824f935d22a1935b1f6f3c51823d3d02 (diff) | |
download | chawan-9b5df91240ea3e38e58d771597cb2a2c3ca95f29.tar.gz |
cgi: fix broken libexec path env variable
Diffstat (limited to 'src/config/chapath.nim')
-rw-r--r-- | src/config/chapath.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/chapath.nim b/src/config/chapath.nim index a2800c6c..adf852a0 100644 --- a/src/config/chapath.nim +++ b/src/config/chapath.nim @@ -9,7 +9,7 @@ import js/tojs import types/opt import utils/twtstr -const libexecPath* {.strdefine.} = "${%CHA_BIN_DIR}/../libexec/chawan" +const libexecPath {.strdefine.} = "${%CHA_BIN_DIR}/../libexec/chawan" type ChaPath* = distinct string |