Переглянути джерело

Pipe "git merge -q" output to /dev/null since it's not appropriately quiet in the face of file removals

Tianon Gravi 9 роки тому
батько
коміт
4182896ba7
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      test-pr.sh

+ 1 - 1
test-pr.sh

@@ -58,7 +58,7 @@ else
 	git config user.name 'nobody'
 	git config user.email '[email protected]'
 	git fetch -q origin "pull/$pull/head:pr-$pull"
-	git merge -q --no-edit "pr-$pull"
+	git merge -q --no-edit "pr-$pull" > /dev/null
 
 	commit="$(git log -1 --format=format:%h "pr-$pull")"
 fi