Skip to content

Commit 18a10d8

Browse files
committed
feat: update logic in release rollback to not get hung up on faulty cleanup
1 parent e25b228 commit 18a10d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

{{cookiecutter.project_name}}/scripts/setup-release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def _rollback_release(version: str) -> None:
8181
]
8282

8383
for command in commands:
84-
subprocess.run(command, cwd=REPO_FOLDER, check=True)
84+
subprocess.run(command, cwd=REPO_FOLDER, check=False)
8585

8686

8787
if __name__ == "__main__":

0 commit comments

Comments
 (0)