File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ export UV_PYTHON="$python_version"
30
30
export UV_PYTHON_PREFERENCE=only-system
31
31
32
32
SCRIPT_DIR="$(dirname "$0")"
33
- PROJECT_ROOT_DIR="$(realpath "$SCRIPT_DIR/../backend ")"
34
-
33
+ PROJECT_ROOT_DIR="$(realpath "$SCRIPT_DIR/..")"
34
+ PYTHON_PROJECT_DIR="$PROJECT_ROOT_DIR/backend"
35
35
# If optionally_lock is set, decide whether to skip locking based on the presence of uv.lock
36
36
if [ "$optionally_lock" = "true" ]; then
37
37
if [ ! -f "$PROJECT_ROOT_DIR/uv.lock" ]; then
@@ -50,4 +50,6 @@ if [ "$skip_lock" = "false" ]; then
50
50
fi
51
51
52
52
uv sync $( [ "$skip_lock" = "false" ] && echo "--frozen" ) --directory "$PROJECT_ROOT_DIR"
53
- uv pip list --directory "$PROJECT_ROOT_DIR"{% endraw %}
53
+ uv pip list --directory "$PROJECT_ROOT_DIR"
54
+
55
+ pnpm {% endraw %}
You can’t perform that action at this time.
0 commit comments