From 6f8c879a46084a4df13c4f11194a88a930558f09 Mon Sep 17 00:00:00 2001 From: Bernd Flemisch <bernd@iws.uni-stuttgart.de> Date: Mon, 29 Mar 2021 11:19:58 +0000 Subject: [PATCH] Update install.sh --- scripts/install.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 00bc658e..c3048a31 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -51,12 +51,12 @@ cd DUMUX # download the test script and the cmake.opts if [ ! -f "test_dumux.sh" ]; then - wget https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course/raw/releases/3.2/scripts/test_dumux.sh + wget https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course/raw/releases/3.3/scripts/test_dumux.sh fi chmod +x test_dumux.sh if [ ! -f "cmake.opts" ]; then - wget https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course/raw/releases/3.2/cmake.opts + wget https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course/raw/releases/3.3/cmake.opts fi if [ $? -ne 0 ]; then @@ -106,21 +106,21 @@ fi # dumux 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.3 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git else echo "Skip cloning dumux because the folder already exists." cd dumux - git checkout releases/3.2 + git checkout releases/3.3 cd .. fi # dumux-course 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.3 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course.git else echo "Skip cloning dumux-course because the folder already exists." cd dumux-course - git checkout releases/3.2 + git checkout releases/3.3 cd .. fi -- GitLab