jenkins-bot has submitted this change and it was merged. Change subject: Simplify osm commands ......................................................................
Simplify osm commands Change-Id: I0062f0eb338d251804b1797eaea8c7d220969cce --- M bin/repocommit 1 file changed, 2 insertions(+), 10 deletions(-) Approvals: Siebrand: Looks good to me, approved jenkins-bot: Verified diff --git a/bin/repocommit b/bin/repocommit index 98bd923..07d6610 100755 --- a/bin/repocommit +++ b/bin/repocommit @@ -185,16 +185,8 @@ elif [ "$PROJECT" = "osm" ] then - cd $PROJECT - git add . - git commit -m "$COMMITMSG" - git push ssh://[email protected]/var/lib/git/rails.git - cd .. - cd potlatch2 - git add . - git commit -m "$COMMITMSG" - git push - cd .. + gitcommitNoCheck $PROJECT + gitcommitNoCheck potlatch2 elif [ "$PROJECT" = "wikiblame" ] then -- To view, visit https://gerrit.wikimedia.org/r/87683 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I0062f0eb338d251804b1797eaea8c7d220969cce Gerrit-PatchSet: 1 Gerrit-Project: translatewiki Gerrit-Branch: master Gerrit-Owner: Siebrand <[email protected]> Gerrit-Reviewer: Siebrand <[email protected]> Gerrit-Reviewer: jenkins-bot _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
