Do not fail the build if no pip3
This commit is contained in:
parent
d0660e84a7
commit
9d9431f6e2
1 changed files with 2 additions and 0 deletions
|
@ -174,7 +174,9 @@ echo "Installing fancy differ"
|
|||
$SUDO npm install -g diff-so-fancy
|
||||
|
||||
if [[ -z $NOPYTHON3 ]]; then
|
||||
set +e
|
||||
pip3_path=`which pip3`
|
||||
set -e
|
||||
echo "pip3 path is $pip3_path"
|
||||
if [[ -x "$pip3_path" ]]; then
|
||||
echo "Choosing pip3 for pip"
|
||||
|
|
Loading…
Reference in a new issue