Thcipriani has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/279172

Change subject: Use git-diff default submodule format
......................................................................

Use git-diff default submodule format

If someone has diff.submodule set to anything other than short in their
git config the git diff command creates different output than is
currently expected in this script.

Ensuring that the diff.submodule format is always set to short means
that there are no needed modifications to a person's git config and
there is no regex futzing needed.

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


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/tools/release 
refs/changes/72/279172/1

diff --git a/make-deploy-notes/make-deploy-notes 
b/make-deploy-notes/make-deploy-notes
index 08809c8..fa49946 100755
--- a/make-deploy-notes/make-deploy-notes
+++ b/make-deploy-notes/make-deploy-notes
@@ -178,7 +178,7 @@
  * @return string
  */
 function git_submodule_diff_output( $oldbranch, $newbranch, $type ) {
-       return shell_exec( "git diff $oldbranch $newbranch $type" );
+       return shell_exec( "git diff --submodule=short $oldbranch $newbranch 
$type" );
 }
 
 /**

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I30e114d4ebed42601f6cb685900985fc0f2f1623
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/tools/release
Gerrit-Branch: master
Gerrit-Owner: Thcipriani <tcipri...@wikimedia.org>

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

Reply via email to