Skip to content

Commit

Permalink
Merge pull request #495 from axlbonnet/correctWrapper
Browse files Browse the repository at this point in the history
update boutiques install on the grid
  • Loading branch information
axlbonnet authored Oct 11, 2024
2 parents f32b52f + af34804 commit b837a04
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions vip-portal/src/main/resources/vm/wrapper.vm
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,15 @@ function checkBosh {
if [ -z "$HOMEBOSH" ]
then
info "bosh not found, trying to install it"
pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org boutiques --prefix $PWD
export PATH="$HOME/.local/bin:$PATH"
pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --user boutiques
if [ $? != 0 ]
then
error "pip install boutiques failed"
exit 1
else
export BOSHEXEC="$PWD/bin/bosh"
fi
export BOSHEXEC="bosh"
fi
else
info "local bosh found in $HOMEBOSH"
export BOSHEXEC=$HOMEBOSH
Expand Down

0 comments on commit b837a04

Please sign in to comment.