Module: Mesa Branch: master Commit: 6c4ad62723053de0fc03f6d922fdc804ac58c266 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6c4ad62723053de0fc03f6d922fdc804ac58c266
Author: Eric Engestrom <[email protected]> Date: Tue Jun 23 02:24:00 2020 +0200 post_version.py: update the files in the current worktree, not the one with the script that we run Signed-off-by: Eric Engestrom <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5928> --- bin/post_version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/post_version.py b/bin/post_version.py index febe531eec5..328a48b2604 100755 --- a/bin/post_version.py +++ b/bin/post_version.py @@ -27,7 +27,7 @@ import subprocess def update_release_notes(version: str) -> None: - p = pathlib.Path(__file__).parent.parent / 'docs' / 'relnotes.rst' + p = pathlib.Path('docs') / 'relnotes.rst' with open(p, 'r') as f: relnotes = f.readlines() @@ -48,7 +48,7 @@ def update_release_notes(version: str) -> None: def update_calendar(version: str) -> None: - p = pathlib.Path(__file__).parent.parent / 'docs' / 'release-calendar.rst' + p = pathlib.Path('docs') / 'release-calendar.rst' with open(p, 'r') as f: calendar = f.readlines() _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
