Commit 70257f96 authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'ci/basop_check_for_changes_fix_to_basop_ci_branch' into 'basop-ci-branch'

[BASOP-CI] correct default value for cwd in basop_check_for_changes_in_testcases.py

See merge request !1964
parents 4828310f d004971f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -270,7 +270,7 @@ if __name__ == "__main__":
    parser.add_argument(
        "--inject_cwd",
        help="Use this as cwd when pruning the long paths in the command lines. Debug option for testing.",
        default=pathlib.Path(__file__).parent.absolute(),
        default=pathlib.Path(os.getcwd()).absolute(),
        type=pathlib.Path,
    )