Skip to content
Snippets Groups Projects
Commit 78484a74 authored by Gabi Seitz's avatar Gabi Seitz
Browse files

Merge branch 'update/installscript_for3.2' into 'master'

[installscript] update checkout command for dumux and dumux-course to 3.2

Closes #22

See merge request !88
parents 8b6f68a7 c1b29e9c
No related branches found
No related tags found
1 merge request!88[installscript] update checkout command for dumux and dumux-course to 3.2
Pipeline #1841 passed
...@@ -106,22 +106,18 @@ fi ...@@ -106,22 +106,18 @@ fi
# dumux # dumux
if [ ! -d "dumux" ]; then if [ ! -d "dumux" ]; then
#git clone -b releases/3.2 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git git clone -b releases/3.2 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git
git clone https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git
else else
echo "Skip cloning dumux because the folder already exists." echo "Skip cloning dumux because the folder already exists."
#git checkout releases/3.2 git checkout releases/3.2
git checkout master
fi fi
# dumux-course # dumux-course
if [ ! -d "dumux-course" ]; then if [ ! -d "dumux-course" ]; then
# git clone -b releases/3.2 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course.git git clone -b releases/3.2 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course.git
git clone https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course.git
else else
echo "Skip cloning dumux-course because the folder already exists." echo "Skip cloning dumux-course because the folder already exists."
#git checkout releases/3.2 git checkout releases/3.2
git checkout master
fi fi
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; 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