From df96ea74a6cb60235678d0dd166bcc367b38be36 Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Tue, 26 Apr 2022 14:02:18 +0200
Subject: [PATCH] [fix][bin] Correct default path (file has been moved)

---
 bin/create_cmakelists.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/create_cmakelists.py b/bin/create_cmakelists.py
index 3f4a026af1..8c8c0149f4 100755
--- a/bin/create_cmakelists.py
+++ b/bin/create_cmakelists.py
@@ -26,7 +26,7 @@ def createCMakeLists():
 
     # default to the dumux folder (relative path to the location of this script)
     if args["folder"] is None:
-        rootDir = os.path.dirname(os.path.abspath(__file__)) + "/../../dumux"
+        rootDir = os.path.dirname(os.path.abspath(__file__)) + "/../dumux"
     else:
         rootDir = args["folder"]
 
-- 
GitLab