[pkg-perl-tools] 02/03: Option quiet only needed in Git::Repository->new

Alex Muntada alexm-guest at moszumanska.debian.org
Thu Nov 3 00:55:17 UTC 2016


This is an automated email from the git hooks/post-receive script.

alexm-guest pushed a commit to branch master
in repository pkg-perl-tools.

commit c33347f5c0807adfc1921ed5352fb62463855c7b
Author: Alex Muntada <alexm at alexm.org>
Date:   Thu Nov 3 01:43:30 2016 +0100

    Option quiet only needed in Git::Repository->new
---
 lib/Debian/PkgPerl/GitHub.pm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/Debian/PkgPerl/GitHub.pm b/lib/Debian/PkgPerl/GitHub.pm
index 3d90f92..52a990e 100644
--- a/lib/Debian/PkgPerl/GitHub.pm
+++ b/lib/Debian/PkgPerl/GitHub.pm
@@ -154,15 +154,15 @@ sub clone_branch_patch_push {
     );
 
     # Branch
-    $r->run( checkout => '-b', $branch, { quiet => 1 } );
+    $r->run( checkout => '-b', $branch );
 
     # Patch
-    $r->run( apply => '-p1', $patch, { quiet => 1 } );
+    $r->run( apply => '-p1', $patch );
 
     # Push
     $r->run( add => '.' );
-    $r->run( commit => '-m', $comment, { quiet => 1 } );
-    $r->run( push => 'origin', $branch, { quiet => 1 } );
+    $r->run( commit => '-m', $comment );
+    $r->run( push => 'origin', $branch );
 }
 
 =head2 create_pull_request($gh, $user, $repo, $params)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/pkg-perl-tools.git



More information about the Pkg-perl-cvs-commits mailing list