From f3f84b1e63ce33d6455005608ec956f3117439d8 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Thu, 21 Dec 2023 14:53:29 -0500 Subject: [PATCH] FIX: Name --- .github/actions/rename_towncrier/rename_towncrier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/rename_towncrier/rename_towncrier.py b/.github/actions/rename_towncrier/rename_towncrier.py index a6183998449..68971d1c83f 100755 --- a/.github/actions/rename_towncrier/rename_towncrier.py +++ b/.github/actions/rename_towncrier/rename_towncrier.py @@ -53,4 +53,4 @@ to = file_re.sub(rf"{directory}{pr_num}.\1.rst", fro) print(f"Renaming {fro} to {to}") if real: - subprocess.check_call(["git", "mv", fro, to]) + subprocess.check_call(["mv", fro, to])