diff options
author | Malfurious <m@lfurio.us> | 2023-10-30 14:11:00 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-11-02 06:11:59 -0400 |
commit | 0da2ed7bd1cd7be76b6803a0c638036614a8f7b9 (patch) | |
tree | e96eaf8fc9a4630b7635a3c03382d810585d9c36 /acid/acid-build | |
parent | 47dbaf2c1d6329fdc814a107e0020b5b23e2d237 (diff) | |
download | cychedelic-0da2ed7bd1cd7be76b6803a0c638036614a8f7b9.tar.gz cychedelic-0da2ed7bd1cd7be76b6803a0c638036614a8f7b9.zip |
Merge data volumes
I need something more complicated than just 1 new directory for logs, so
let's go to the trouble now of merging the persistent volumes together
and use subdirectories/files. The default location is now '/data'.
To aid similar changes in the future, the locations of these persistent
files are no longer hard-coded in the source, but defined by global
shell variables.
Additionally, a bug is fixed which impacted our ability to accurately
clean old logs and calculate the next job number.
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'acid/acid-build')
-rwxr-xr-x | acid/acid-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acid/acid-build b/acid/acid-build index fd5b69d..87c281e 100755 --- a/acid/acid-build +++ b/acid/acid-build @@ -23,7 +23,7 @@ # This file exits early on any failure (non-zero). On a successful run in # `--self` mode, this file does not exit (we are killed by `compose down`). -cd "/services/$1" +cd "$CYCHE_SERVICE_DIR/$1" # For <file>, no absolute paths and no '../' if ! echo "$2" | grep -Evq '\.\.|^/'; then |