diff --git a/scripts/install.sh b/scripts/install.sh index 00bc658e9d40414c3a1778dbbb79fb43bc704d13..c3048a3164a30bc06e9bc415ac449459a933690b 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