Pārlūkot izejas kodu

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

Tianon Gravi 9 gadi atpakaļ
vecāks
revīzija
4182896ba7
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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