Skip to content

Commit c1860d7

Browse files
committed
Don't exit if we can't commit
Useful when we need to redo a release Signed-off-by: Chmouel Boudjnah <[email protected]>
1 parent 2be909c commit c1860d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/make-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ sed -i "s/^VERSION=.*/VERSION=${VERSION}/" docs/install.md
2121

2222
git switch main
2323

24-
git commit -S -m "Update documentation for Release ${VERSION}" docs/install.md README.md
24+
git commit -S -m "Update documentation for Release ${VERSION}" docs/install.md README.md || true
2525
git tag -s ${VERSION} -m "Release ${VERSION}"
2626
git push ${remote} refs/heads/main
2727
git push --tags ${remote} refs/tags/${VERSION}

0 commit comments

Comments
 (0)