summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcommitpkg10
1 files changed, 10 insertions, 0 deletions
diff --git a/commitpkg b/commitpkg
index 1b1fc46..7b9c133 100755
--- a/commitpkg
+++ b/commitpkg
@@ -119,4 +119,14 @@ if [ $? -ne 0 ]; then
fi
echo "===> Tagged for $repo-$CARCH"
+if [ "$CARCH" == "any"]; then
+ if [ -d ../repos/${repo}-i686 -a -d ../repos/${repo}-x86_64 ]; then
+ pushd ..
+ svn rm $repo-i686
+ svn rm $repo-x86_64
+ svn commit -m "removed $repo-i686 and $repo-x86_64 for $pkgname"
+ popd
+ fi
+fi
+
# vim:ft=sh:ts=4:sw=4:et: