From 90e26f3523ff1491d2222f5e355a558c8c9c9f06 Mon Sep 17 00:00:00 2001 From: Para Dox Date: Sun, 27 Apr 2025 17:32:37 +0700 Subject: [PATCH] exec --- scripts/prune-reth.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/prune-reth.sh b/scripts/prune-reth.sh index 1ee0891c..d3608fca 100755 --- a/scripts/prune-reth.sh +++ b/scripts/prune-reth.sh @@ -4,8 +4,8 @@ set -e # Exit immediately if a command exits with a non-zero status. set -u # Treat unset variables as an error when substituting. DATA_DIR="${DATA_DIR:-/data}" -STATIC_FILES_DIR="${STATIC_FILES_DIR:-/data/static_files}" -DELETE_DIR="${DELETE_DIR:-/data/static_files/delete_me}" +STATIC_FILES_DIR="${STATIC_FILES_DIR:-$DATA_DIR/static_files}" +DELETE_DIR="${DELETE_DIR:-$DATA_DIR/static_files/delete_me}" echo "Starting Reth pruning process for static files in $STATIC_FILES_DIR..."