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

Fixing install and build script

parent 04e74eea
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@ fi
# pull from all the projects
cd openfpm_data
mkdir src/config
git pull origin develop
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
......@@ -29,6 +30,7 @@ fi
cd ..
cd openfpm_devices
mkdir src/config
git pull origin master
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
......@@ -37,6 +39,7 @@ fi
cd ..
cd openfpm_vcluster
mkdir src/config
git pull origin master
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
......@@ -45,6 +48,7 @@ fi
cd ..
cd openfpm_io
mkdir src/config
git pull origin master
if [ $? -ne 0 ]; then
echo -e "Configure\033[91;5;1m FAILED \033[0m"
......
......@@ -57,6 +57,24 @@ if [ $? -ne 0 ]; then
exit 1
fi
# Create config directory in each submodule
cd openfpm_data
mkdir src/config
cd ..
cd openfpm_devices
mkdir src/config
cd ..
cd openfpm_vcluster
mkdir src/config
cd ..
cd openfpm_io
mkdir src/config
cd ..
# Create config directory
if [ ! -d src/config ]; then
......
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