summaryrefslogtreecommitdiff
path: root/db-move
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2010-08-14 20:20:11 +0200
committerPierre Schmitz <pierre@archlinux.de>2010-08-14 20:20:11 +0200
commitcfa19b31cdeb6698d69ae9a82904c09d3d65a5d7 (patch)
tree22fb3014c7e3f7d4b872498f82dd2247a6a8892b /db-move
parentcdf17a4c4c83c1363a59fa688654276c3d807eae (diff)
Don't hardcode supported architectures in db-move
Diffstat (limited to 'db-move')
-rwxr-xr-xdb-move2
1 files changed, 1 insertions, 1 deletions
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