Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-11-08 14:35:57 +0100
committerErich Eckner <git@eckner.net>2017-11-08 14:35:57 +0100
commitd468fc1c658d63ed043844a214766831912573d5 (patch)
treed67337fbb575e5617a84a9d39515233b3b4ff903
parentf58016e81217383daeedc615f009cd92985da609 (diff)
parent7259e7def07a5f6ee04a34db61a87361ad0b5ac7 (diff)
Merge remote-tracking branch 'upstream/master'
-rw-r--r--commitpkg.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/commitpkg.in b/commitpkg.in
index 53b6612..3fc3fa6 100644
--- a/commitpkg.in
+++ b/commitpkg.in
@@ -189,12 +189,11 @@ if [[ ${#uploads[*]} -gt 0 ]]; then
fi
if [[ "${arch[*]}" == 'any' ]]; then
- if [[ -d ../repos/$repo-i686 && -d ../repos/$repo-x86_64 ]]; then
+ if [[ -d ../repos/$repo-x86_64 ]]; then
pushd ../repos/ >/dev/null
- stat_busy "Removing %s and %s" "$repo-i686" "$repo-x86_64"
- svn rm -q "$repo-i686"
+ stat_busy "Removing %s" "$repo-x86_64"
svn rm -q "$repo-x86_64"
- svn commit -q -m "Removed $repo-i686 and $repo-x86_64 for $pkgname"
+ svn commit -q -m "Removed $repo-x86_64 for $pkgname"
stat_done
popd >/dev/null
fi