chore: fix build script bug

# What does this PR do?


## Test Plan
This commit is contained in:
Eric Huang 2025-06-24 11:49:20 -07:00
parent 450ed920d6
commit ee635871b0

View file

@ -128,12 +128,12 @@ ensure_conda_env_python310() {
# Install pip dependencies # Install pip dependencies
printf "Installing pip dependencies\n" printf "Installing pip dependencies\n"
uv pip install "$pip_dependencies" uv pip install $pip_dependencies
if [ -n "$special_pip_deps" ]; then if [ -n "$special_pip_deps" ]; then
IFS='#' read -ra parts <<<"$special_pip_deps" IFS='#' read -ra parts <<<"$special_pip_deps"
for part in "${parts[@]}"; do for part in "${parts[@]}"; do
echo "$part" echo "$part"
uv pip install "$part" uv pip install $part
done done
fi fi
fi fi