From da60d35bc1e81106efe487e7550d0fbeb8bc5ea4 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Sun, 21 Sep 2025 00:46:22 -0700 Subject: [PATCH] Update scripts/bash/common.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- scripts/bash/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bash/common.sh b/scripts/bash/common.sh index 4458b0c..34e5d4b 100644 --- a/scripts/bash/common.sh +++ b/scripts/bash/common.sh @@ -8,7 +8,7 @@ get_repo_root() { else # Fall back to script location for non-git repos local script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" - cd "$script_dir/../../.." && pwd + (cd "$script_dir/../../.." && pwd) fi }