File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ PROJECT_ROOT_DIR="$(realpath "$SCRIPT_DIR/..")"
34
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
- if [ ! -f "$PROJECT_ROOT_DIR /uv.lock" ]; then
37
+ if [ ! -f "$PYTHON_PROJECT_DIR /uv.lock" ]; then
38
38
skip_lock=true
39
39
else
40
40
skip_lock=false
46
46
47
47
# Ensure that the lock file is in a good state
48
48
if [ "$skip_lock" = "false" ]; then
49
- uv lock --check --directory "$PROJECT_ROOT_DIR "
49
+ uv lock --check --directory "$PYTHON_PROJECT_DIR "
50
50
fi
51
51
52
- uv sync $( [ "$skip_lock" = "false" ] && echo "--frozen" ) --directory "$PROJECT_ROOT_DIR "
53
- uv pip list --directory "$PROJECT_ROOT_DIR "
52
+ uv sync $( [ "$skip_lock" = "false" ] && echo "--frozen" ) --directory "$PYTHON_PROJECT_DIR "
53
+ uv pip list --directory "$PYTHON_PROJECT_DIR "
54
54
55
- pnpm {% endraw %}
55
+ NPM_PROJECT_DIR="$PROJECT_ROOT_DIR/frontend"
56
+ pnpm install --dir="$NPM_PROJECT_DIR"{% endraw %}
You can’t perform that action at this time.
0 commit comments