From 9d9431f6e28a2635013acb84142ecf28f2b0a908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Thu, 3 Nov 2016 21:58:39 +0100 Subject: [PATCH] Do not fail the build if no pip3 --- common/configure_fresh_system | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 2bc25234..4885a51f 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -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"