Commit c22a6014 authored by Pierre Schmitz's avatar Pierre Schmitz
Browse files

supress confusing output of pushd and popd

parent d440e599
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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