diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-08 06:46:37 +0200 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-08 06:46:37 +0200 |
commit | 3207e38d0f65b569402b1497920be2c47df2fbb1 (patch) | |
tree | e6b86ad7d23a1b8e01b39331d1fe26797813507f /db-inc | |
parent | 6b7792a5a600cf410701e55e1271f88ede12ec43 (diff) | |
download | dbscripts-3207e38d0f65b569402b1497920be2c47df2fbb1.tar.gz dbscripts-3207e38d0f65b569402b1497920be2c47df2fbb1.tar.xz |
Make SVN output quiet
Way too much output, and it's useless...
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'db-inc')
-rw-r--r-- | db-inc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -87,8 +87,8 @@ if [ "`ls $stagedir/add 2>/dev/null`" -o "`ls $stagedir/del 2>/dev/null`" ]; the if [ "$svndir" ]; then mv $svndir $TMPDIR/checkout else - echo "==> Checking out repo: $svnrepo ($arch)" - svn export file://$svnpath $TMPDIR/checkout + echo "==> Checking out repo: $svnrepo ($arch) - Please be patient" + svn export -q file://$svnpath $TMPDIR/checkout if [ $? -gt 0 ]; then die "==> SVN export failed!" fi |