mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 10:54:19 +00:00
chore: fix build script bug
# What does this PR do? ## Test Plan
This commit is contained in:
parent
450ed920d6
commit
ee635871b0
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue