From bebe2990ad5c7ecff382100fad5296c52da80255 Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Fri, 6 Nov 2020 07:12:57 +0000 Subject: [PATCH] Merge branch 'feature/install-lowercase-foldername' into 'master' [bin] Lower case folder name See merge request dumux-repositories/dumux!2357 (cherry picked from commit e76f9809807adaa5f4cd6babef3240ed76413c7a) 3d5f5441 [bin] Lower case folder name --- bin/installdumux.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/installdumux.py b/bin/installdumux.py index deaff81b22..013aedf920 100755 --- a/bin/installdumux.py +++ b/bin/installdumux.py @@ -81,8 +81,8 @@ show_message("(1/3) Step completed. All prerequistes found.") ################################################################# ################################################################# # make a new folder containing everything -os.makedirs("./DUMUX", exist_ok=True) -os.chdir("DUMUX") +os.makedirs("./dumux", exist_ok=True) +os.chdir("dumux") show_message("(2/3) Cloning repositories. This may take a while. Make sure to be connected to the internet...") @@ -127,7 +127,7 @@ show_message("(3/3) Step completed. Succesfully configured and built dune and du ################################################################# ################################################################# show_message("(Installation complete) To test if everything works, please run the following commands (can be copied to command line):\n\n" - " cd DUMUX/dumux/build-cmake/test/porousmediumflow/1p/implicit/isothermal\n" + " cd dumux/dumux/build-cmake/test/porousmediumflow/1p/implicit/isothermal\n" " make test_1p_tpfa\n" " ./test_1p_tpfa\n" " paraview *pvd\n") -- GitLab