From 423452344815b1f2a40a69f72f89bd7bc55deae7 Mon Sep 17 00:00:00 2001
From: Pietro Incardona <incardon@mpi-cbg.de>
Date: Tue, 21 Feb 2017 23:36:36 +0100
Subject: [PATCH] Testing upgrade fix

---
 script/update_openfpm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/script/update_openfpm b/script/update_openfpm
index 6a28c233f..b1ec3d188 100755
--- a/script/update_openfpm
+++ b/script/update_openfpm
@@ -39,10 +39,10 @@ function update_openfpm()
   dir_prev_inst=$(cat dependencies_dir)
   for_opt=$(cat foward_options)
   if [ x"$dir_prev_inst" != x"" ]; then
-    dir_prev_inst="-i $dir_prev_inst"
+    dir_prev_inst="-i \"$dir_prev_inst\""
   fi
-  if [ x"$foward_options" != x"" ]; then
-    foward_options="-c $foward_options"
+  if [ x"$for_opt" != x"" ]; then
+    for_opt="-c \"$for_opt\""
   fi
 
 
@@ -67,9 +67,11 @@ function update_openfpm()
       echo -e "To make the update active do: \033[1m make install \033[0m"
     fi
   else
-    ./install $dir_prev_inst $foward_options
+    ./install $dir_prev_inst $for_opt
   fi
 
+  ### end
+
 }
 
 
-- 
GitLab