diff options
| author | Robert Günzler <r@gnzler.io> | 2025-09-22 20:30:18 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2025-09-22 20:30:22 +0200 |
| commit | 3e551a40acf03ff32a44a26e4d78aad130fc8523 (patch) | |
| tree | 9f68667f8a5a91692baac67256b243152a968e5e /bin/svtree-compile | |
| parent | 11a4c68af62273212cc233dd09378edbb40f7fd0 (diff) | |
svtree-compile: fix generated envvar source
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to '')
| -rwxr-xr-x | bin/svtree-compile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/svtree-compile b/bin/svtree-compile index 1b2d0d0..d937415 100755 --- a/bin/svtree-compile +++ b/bin/svtree-compile @@ -4,7 +4,7 @@ set -eu LIVE_DIR=${LIVE_DIR:-/run/s6-rc} STATE_DIR=${STATE_DIR:-/etc/s6-rc} SOURCE_DIR=${SOURCE_DIR:-/etc/s6-rc/src} -GENERATED_DIR=${SOURCE_DIR:-/run/svtree-generated} +GENERATED_DIR=${GENERATED_DIR:-/run/svtree-generated} new_dir="$STATE_DIR"/"_$(date +%s)" |