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
This commit is contained in:
shiva108
2026-01-07 13:46:03 +01:00
parent 5db451ebdd
commit 0d0cbf9682
+1 -2
View File
@@ -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() {