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

Fixing update

parent 07859371
No related branches found
No related tags found
No related merge requests found
#! /bin/bash
source script/show_solutions source script/show_solutions
...@@ -89,26 +88,30 @@ function update_openfpm() ...@@ -89,26 +88,30 @@ function update_openfpm()
if [ x"$1" == x"update" -a x"$force_up" == x"" ]; then if [ x"$1" == x"update" -a x"$force_up" == x"" ]; then
source $HOME/openfpm_vars source $HOME/openfpm_vars
sh autogen.sh sh autogen.sh
./config.status
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo -e "Update summary\033[91;5;1m FAILED \033[0m" echo -e "Update summary\033[91;5;1m FAILED \033[0m"
return
fi fi
make make
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo -e "Update summary\033[91;5;1m FAILED \033[0m" echo -e "Update summary\033[91;5;1m FAILED \033[0m"
return
else else
echo -e "Update summary\033[92;5;1m SUCCEED \033[0m" echo -e "Update summary\033[92;5;1m SUCCEED \033[0m"
echo -e "To make the update active do: \033[1m make install \033[0m" echo -e "To make the update active do: \033[1m make install \033[0m"
return
fi fi
else else
#### Remove .deps for fresh install #### Remove .deps for fresh install
./install $dir_prev_inst $for_opt ./install $dir_prev_inst $for_opt
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo -e "Upgrade summary\033[91;5;1m FAILED \033[0m" echo -e "Upgrade summary\033[91;5;1m FAILED \033[0m"
return
else else
echo -e "Upgrade summary\033[92;5;1m SUCCEED \033[0m" echo -e "Upgrade summary\033[92;5;1m SUCCEED \033[0m"
echo -e "To make the upgrade active do: \033[1m make install \033[0m" echo -e "To make the upgrade active do: \033[1m make install \033[0m"
rm force_upgrade rm force_upgrade
return
fi fi
fi fi
......
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