Skip to content
Snippets Groups Projects
Commit 92e266d9 authored by Andreas Dedner's avatar Andreas Dedner
Browse files

warn about an issue with python -m dune fix-dunepy not doing anything due to...

parent 34068da6
Branches
Tags
1 merge request!1179warn about an issue with python -m dune fix-dunepy not doing anything due to...
......@@ -68,6 +68,12 @@ def fixdunepy(force):
if os.path.isdir(dune_py_dir):
shutil.rmtree(dune_py_dir)
else:
print("""
Fixing dunepy only works with 'force=True' at the moment - nothing will be done.
If you are encountering an inconsistent dune-py setup please report in the issue
https://gitlab.dune-project.org/core/dune-common/-/issues/318.
""")
return 1
ccfiles = filebases( glob.glob(os.path.join(generated_dir, '*.cc')) )
sofiles = filebases( glob.glob(os.path.join(generated_dir, '*.so')) )
cmakedirs = filebases( glob.glob(os.path.join(generated_dir, "CMakeFiles", "*.dir") ) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment