[Bf-blender-cvs] [a189e54] master: Fix for previous own commit (logical error - I hate bash).

Bastien Montagne noreply at git.blender.org
Tue Nov 17 21:51:00 CET 2015


Commit: a189e544ec04c0abdcdd738b8c5f9cca843eda89
Author: Bastien Montagne
Date:   Tue Nov 17 21:50:30 2015 +0100
Branches: master
https://developer.blender.org/rBa189e544ec04c0abdcdd738b8c5f9cca843eda89

Fix for previous own commit (logical error - I hate bash).

===================================================================

M	build_files/build_environment/install_deps.sh

===================================================================

diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index a7ebe5d..92c88f0 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -632,7 +632,7 @@ version_ge() {
 # $1 and $2 should be version numbers made of numbers only.
 version_ge_lt() {
   version_ge $1 $3
-  if [ $? -eq 1 ]; then
+  if [ $? -eq 0 ]; then
     return 1
   else
     version_ge $1 $2




More information about the Bf-blender-cvs mailing list