From 5671e739aa00d98f4e68e3e6819217c83cead1f2 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 25 Mar 2020 20:06:27 +0100 Subject: bumpVersion, bumpPkgrel: push submodules to all remotes --- bumpPkgrel | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bumpPkgrel') diff --git a/bumpPkgrel b/bumpPkgrel index a8671668..110cf783 100755 --- a/bumpPkgrel +++ b/bumpPkgrel @@ -28,7 +28,11 @@ if [ $# -eq 1 ]; then if [ -d '.git' ] || [ -f '.git' ]; then makepkg --printsrcinfo > .SRCINFO git commit 'PKGBUILD' '.SRCINFO' -m "${pkg}: rebuild" - git push || exit 1 + for remote in $( + git remote + ); do + git push "${remote}" || exit 1 + done cd .. git commit "${pkg}" -m "${pkg}: rebuild" else -- cgit v1.2.3-54-g00ecf