From 6c4ad62723053de0fc03f6d922fdc804ac58c266 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 23 Jun 2020 02:24:00 +0200 Subject: [PATCH] post_version.py: update the files in the current worktree, not the one with the script that we run Signed-off-by: Eric Engestrom Part-of: --- 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() -- 2.30.2