supress confusing output of pushd and popd

This commit is contained in:
Pierre Schmitz 2010-02-12 01:11:59 +01:00
parent d440e5998d
commit c22a6014d7
2 changed files with 4 additions and 4 deletions

View File

@ -21,11 +21,11 @@ if [ "$(svn diff)" != "" ]; then
exit 1
fi
pushd ..
pushd .. >/dev/null
if [ -d repos/$1 ]; then
svn rm --force -q repos/$1
svn commit -q -m "archrelease: remove $1"
fi
svn copy -q -r HEAD trunk repos/$1
svn commit -q -m "archrelease: copy trunk to $1"
popd
popd >/dev/null

View File

@ -88,11 +88,11 @@ done
if [ "${arch[*]}" == "any" ]; then
if [ -d ../repos/$repo-i686 -a -d ../repos/$repo-x86_64 ]; then
pushd ../repos/
pushd ../repos/ >/dev/null
svn rm $repo-i686
svn rm $repo-x86_64
svn commit -m "removed $repo-i686 and $repo-x86_64 for $pkgname"
popd
popd >/dev/null
fi
fi