From: Christian Heller <c.heller@plomlompom.de>
Date: Tue, 10 Mar 2015 02:31:06 +0000 (+0100)
Subject: More lenient python3 existence test.
X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/%7B%7B%20web_path%20%7D%7D/%7B%7Bdb.prefix%7D%7D/static/foo.html?a=commitdiff_plain;h=59fdc8d8ec91aede0eb103904931aff569e779d0;p=plomrogue

More lenient python3 existence test.
---

diff --git a/start_server_client_union.sh b/start_server_client_union.sh
index 116a188..c56bf06 100755
--- a/start_server_client_union.sh
+++ b/start_server_client_union.sh
@@ -11,7 +11,7 @@ fi
 
 # Abort if no proper Python version installed.
 test=`command -v python3 | wc -l`
-if [ 1 != $test ]
+if [ 1 -gt $test ]
 then
     echo "FAILURE:"
     echo "No python3 installed, but it's needed!"