From 0d0cbf96823b630d07fa016f1685be7fafda5852 Mon Sep 17 00:00:00 2001 From: shiva108 Date: Wed, 7 Jan 2026 13:46:03 +0100 Subject: [PATCH] fix: Update install.sh logic to use correct parent paths - Fixed bug where artifacts were created in tools/ instead of scripts/ - Corrected PARENT_DIR calculation --- scripts/tools/install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/tools/install.sh b/scripts/tools/install.sh index ad16d75..ba9a765 100755 --- a/scripts/tools/install.sh +++ b/scripts/tools/install.sh @@ -17,9 +17,8 @@ NC='\033[0m' # No Color # Script directory SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -PARENT_DIR="$(dirname "$PARENT_DIR")" +PARENT_DIR="$(dirname "$SCRIPT_DIR")" VENV_DIR="$PARENT_DIR/venv" -VENV_DIR="$SCRIPT_DIR/venv" # Print functions print_header() {