[arch-projects] [devtools][PATCH] commitpkg: Make svn quieter

Eric Bélanger snowmaniscool at gmail.com
Fri Nov 4 01:51:49 EDT 2011


Signed-off-by: Eric Bélanger <snowmaniscool at gmail.com>
---
 commitpkg.in |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/commitpkg.in b/commitpkg.in
index 2dc9f19..ba98aaa 100644
--- a/commitpkg.in
+++ b/commitpkg.in
@@ -172,8 +172,8 @@ if [ "${arch[*]}" == 'any' ]; then
 	if [ -d ../repos/$repo-i686 -a -d ../repos/$repo-x86_64 ]; then
 		pushd ../repos/ >/dev/null
 		stat_busy "Removing $repo-i686 and $repo-x86_64"
-		svn rm $repo-i686
-		svn rm $repo-x86_64
+		svn rm -q $repo-i686
+		svn rm -q $repo-x86_64
 		svn commit -q -m "Removed $repo-i686 and $repo-x86_64 for $pkgname"
 		stat_done
 		popd >/dev/null
@@ -182,7 +182,7 @@ else
 	if [ -d ../repos/$repo-any ]; then
 		pushd ../repos/ >/dev/null
 		stat_busy "Removing $repo-any"
-		svn rm $repo-any
+		svn rm -q $repo-any
 		svn commit -q -m "Removed $repo-any for $pkgname"
 		stat_done
 		popd >/dev/null
-- 
1.7.7.2



More information about the arch-projects mailing list