Skip to content

Commit

Permalink
fix(ota): not applying to all reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
SanaaHamel committed Aug 4, 2023
1 parent c52ec37 commit e3822b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/setup-tool-env.bash
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ if [ ! -d "$VENV_DIR" ] && ! virtualenv -p python3 "$VENV_DIR"; then
exit 1
fi

for REQ in $PYTHON_REQUIREMENTS; do
for REQ in "${PYTHON_REQUIREMENTS[@]}"; do
"$VENV_DIR/bin/pip" install -r "$REQ"
done

for REPO in $PYTHON_GITHUB_REPOS; do
for REPO in "${PYTHON_GITHUB_REPOS[@]}"; do
"$VENV_DIR/bin/pip" install --force-reinstall "git+https://github.com/$REPO@main"
done

Expand Down

0 comments on commit e3822b7

Please sign in to comment.