From 4025300840e8cb1a254e7faff84bedeab877436c Mon Sep 17 00:00:00 2001 From: Thomas Shih Date: Mon, 1 Dec 2025 13:44:43 -0700 Subject: [PATCH] Refactor DB_DIR assignment to simplify path handling --- src/bin/rules_loop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/rules_loop.sh b/src/bin/rules_loop.sh index 3d9010835..6e9cc7830 100644 --- a/src/bin/rules_loop.sh +++ b/src/bin/rules_loop.sh @@ -22,7 +22,7 @@ if [[ -z $1 ]]; then exit 0 fi -DB_DIR="$(pwd)/$1" +DB_DIR=$1 EXEC_DIR="$(dirname $0)/" if [[ ! ${EXEC_DIR:0:1} == "/" ]]; then