From 047626909c6ec3db6271644e5b70716c567293ac Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sun, 20 May 2018 19:02:10 -0400 Subject: [PATCH] fix: cleanup temporary changes during betafish releases [ci skip] --- contrib/release | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/release b/contrib/release index 2251be18e..5ee03a0ab 100755 --- a/contrib/release +++ b/contrib/release @@ -346,6 +346,10 @@ main() { fn-publish-package "$IS_RELEASE" "rpm" "dokku-${NEXT_VERSION}-1.x86_64.rpm" || log-fail "Error publishing rpm package" fn-repo-push-tags "$IS_RELEASE" + if [[ "$IS_RELEASE" != "true" ]]; then + git reset -q HEAD plugins/*/plugin.toml + git checkout -- plugins/*/plugin.toml + fi } main "$@"