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

Fixing install and jenkin scripts

parent 26137091
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,16 @@ echo "Machine: $2"
mkdir src/config
git submodule init
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
exit 1
fi
git submodule update
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
exit 1
fi
# pull from all the projects
cd openfpm_data
......@@ -42,12 +52,6 @@ if [ $? -ne 0 ]; then
fi
cd ..
git submodule update
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
exit 1
fi
cd openfpm_data
git checkout develop
cd ..
......
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