From 4b51ce97e9f4fb10529b0cdf8bfd2c946dc2ccba Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 7 Oct 2017 20:59:38 +0200 Subject: Fix update.sh for debian (?) hopefully --- update.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'update.sh') diff --git a/update.sh b/update.sh index 362af9a6..622c5c11 100755 --- a/update.sh +++ b/update.sh @@ -17,17 +17,15 @@ then POEZIO_PYTHON=python3 fi -if ! command -v "$POEZIO_PYTHON" > /dev/null 2>&1 -then +command -v "$POEZIO_PYTHON" > /dev/null 2>&1 || { echo "Python executable '$POEZIO_PYTHON' not found." exit 1 -fi +} -if ! $POEZIO_PYTHON -c 'import venv' &> /dev/null -then +$POEZIO_PYTHON -c 'import venv' &> /dev/null || { echo "'$POEZIO_PYTHON' venv module not found. Check that you have python (>= 3.4) installed," exit 1 -fi +} echo 'Updating poezio' git pull --ff-only origin master || { -- cgit v1.2.3