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

Fixing update system

parent 9961e77d
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,16 @@ function update_openfpm()
sh autogen.sh
./config.status
make install
if [ $? -ne 0 ]; then
echo -e "Update summary\033[91;5;1m FAILED \033[0m"
fi
make
if [ $? -ne 0 ]; then
echo -e "Update summary\033[91;5;1m FAILED \033[0m"
else
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"
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