diff options
| author | Robert Günzler <r@gnzler.io> | 2025-09-22 20:17:34 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2025-09-22 20:17:40 +0200 |
| commit | 1be29a8592aa65470ededf03eff9c16bcde98c7c (patch) | |
| tree | 0e3a3244beb67403738a49a7eb20c7c0679052b3 | |
| parent | 44d92a826a8789060fc08a8b60ccff77f42941f5 (diff) | |
fix statedir var use
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to '')
| -rwxr-xr-x | bin/svtree-run | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/svtree-run b/bin/svtree-run index 1f3711b..dac7cc8 100755 --- a/bin/svtree-run +++ b/bin/svtree-run @@ -6,8 +6,8 @@ importas -D "/run" -S XDG_RUNTIME_DIR define STATE_DIR "${XDG_CONFIG_HOME}/s6-rc" define LIVE_DIR "${XDG_RUNTIME_DIR}/s6-rc" define SCAN_DIR "${XDG_RUNTIME_DIR}/service" -define SOURCE_DIR "${STATEDIR}/src" -define COMPILED_DIR "${STATEDIR}/compiled" +define SOURCE_DIR "${STATE_DIR}/src" +define COMPILED_DIR "${STATE_DIR}/compiled" define GENERATED_DIR "${XDG_RUNTIME_DIR}/svtree-generated" # generate additional services |