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

Merge branch 'fix/warnAboundFixDunePyIssue' into 'master'

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

See merge request !1179
parents 34068da6 92e266d9
Branches
Tags
1 merge request!1179warn about an issue with python -m dune fix-dunepy not doing anything due to...
Pipeline #54662 passed
Pipeline: Dune Nightly Test

#54665

    ......@@ -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