Skip to content
Snippets Groups Projects
Commit 18cb56d9 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing installation script

parent a89545bf
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ function remove_old()
## Get the previos openFPM installation
previous_inst=$(cat $PWD/install_dir)
if [ x"$previous_inst"!=x"" ]; then
if [ x"$previous_inst" !=x "" ]; then
echo "Found previous installation"
if [ -d "$previous_inst/openfpm_pdata" ]; then
echo "Removing the folder: $previous_inst/openfpm_pdata"
......@@ -76,7 +76,7 @@ function remove_old()
## Check the installed version of the dependencies
is_update=$(cat $1/BOOST/include/boost/version.hpp | grep "#define BOOST_VERSION 106000")
if [ x"$is_update"==x"" ]; then
if [ x"$is_update" == x"" ]; then
echo "New boost version, removing the old one"
rm -rf $1/BOOST/include
rm -rf $1/BOOST/lib
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment