jenkins-bot has submitted this change and it was merged.

Change subject: Specify git log format
......................................................................


Specify git log format

The script expects the git log output to be in the default "medium"
format for parsing to work correctly. Explicitly request the medium
format rather than assuming that the user has not configured an
alternate output format.

Change-Id: Ie9dc73ef12ffd48e85d52ac0fd27c6ef770ed478
---
M make-deploy-notes/make-deploy-notes
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Hashar: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/make-deploy-notes/make-deploy-notes 
b/make-deploy-notes/make-deploy-notes
index a28dabc..d6ee01f 100755
--- a/make-deploy-notes/make-deploy-notes
+++ b/make-deploy-notes/make-deploy-notes
@@ -107,7 +107,7 @@
 }
 
 function full_git_log_as_array( $oldRev, $newRev ) {
-       $command = "git log --cherry-pick --right-only --no-merges 
$oldRev..$newRev";
+       $command = "git log --format=medium --cherry-pick --right-only 
--no-merges $oldRev..$newRev";
        try {
                $output = capture_output( $command );
        } catch( ExecException $e ) {

-- 
To view, visit https://gerrit.wikimedia.org/r/117163
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie9dc73ef12ffd48e85d52ac0fd27c6ef770ed478
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/tools/release
Gerrit-Branch: master
Gerrit-Owner: BryanDavis <bda...@wikimedia.org>
Gerrit-Reviewer: Hashar <has...@free.fr>
Gerrit-Reviewer: Reedy <re...@wikimedia.org>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to