From cfa19b31cdeb6698d69ae9a82904c09d3d65a5d7 Mon Sep 17 00:00:00 2001
From: Pierre Schmitz <pierre@archlinux.de>
Date: Sat, 14 Aug 2010 20:20:11 +0200
Subject: Don't hardcode supported architectures in db-move

---
 db-move | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/db-move b/db-move
index 207baec..68cfc07 100755
--- a/db-move
+++ b/db-move
@@ -13,7 +13,7 @@ repofrom="$2"
 repoto="$3"
 arch="$4"
 if [ "${arch}" == 'any' ]; then
-	tarches=('i686' 'x86_64')
+	tarches=(${ARCHES[@]})
 else
 	tarches=("${arch}")
 fi
-- 
cgit v1.2.3-2-g168b