From 8ab2bd25363e34fa7bc9255aa7b8b31252ca962e Mon Sep 17 00:00:00 2001 From: Ellyse Cedeno Date: Wed, 29 Oct 2025 20:31:23 +0000 Subject: [PATCH] allows start script to run from relative directories --- scripts/start-local-dev.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/start-local-dev.sh b/scripts/start-local-dev.sh index 5dfdfd795..3b56bd8dd 100755 --- a/scripts/start-local-dev.sh +++ b/scripts/start-local-dev.sh @@ -1,3 +1,7 @@ +# Change to repository root (parent of scripts directory) +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +cd "$SCRIPT_DIR/.." + # Parse command line arguments FORCE=false while [[ $# -gt 0 ]]; do