From 5eec07cef27cf561066340e31167635f264708f4 Mon Sep 17 00:00:00 2001 From: grubert Date: Sun, 16 Dec 2012 17:45:28 +0000 Subject: [PATCH] WARN but do not stop if a python version is not installed git-svn-id: https://docutils.svn.sourceforge.net/svnroot/docutils/trunk@7560 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- sandbox/infrastructure/release.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sandbox/infrastructure/release.sh b/sandbox/infrastructure/release.sh index b1c7f5491..235a5820a 100755 --- a/sandbox/infrastructure/release.sh +++ b/sandbox/infrastructure/release.sh @@ -118,9 +118,7 @@ function initialize() for py_ver in $python_versions; do echo -n "Checking for Python $py_ver (python$py_ver)... " if ! echo 'print "OK"' | python$py_ver; then - echo "Python $py_ver (python$py_ver) not found." - echo Aborting. - exit 1 + echo "WARN: Python $py_ver (python$py_ver) not found." fi done echo -n 'Clearing $PYTHONPATH... ' -- 2.11.4.GIT