Skip to content

Commit 626abf7

Browse files
authored
Make full_install.sh working dir -> script dir (#4933)
1 parent 3962cd2 commit 626abf7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

full_install.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4+
# Get the directory of the script
5+
script_dir=$(dirname "$0")
6+
7+
# Change the current directory to the script's directory
8+
cd "$script_dir"
9+
410
EDITABLE="true"
511
UV_FLAGS=""
612

0 commit comments

Comments
 (0)