diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-08-14 20:20:11 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-08-14 20:20:11 +0200 |
commit | cfa19b31cdeb6698d69ae9a82904c09d3d65a5d7 (patch) | |
tree | 22fb3014c7e3f7d4b872498f82dd2247a6a8892b | |
parent | cdf17a4c4c83c1363a59fa688654276c3d807eae (diff) | |
download | dbscripts-cfa19b31cdeb6698d69ae9a82904c09d3d65a5d7.tar.gz dbscripts-cfa19b31cdeb6698d69ae9a82904c09d3d65a5d7.tar.xz |
Don't hardcode supported architectures in db-move
-rwxr-xr-x | db-move | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ repofrom="$2" repoto="$3" arch="$4" if [ "${arch}" == 'any' ]; then - tarches=('i686' 'x86_64') + tarches=(${ARCHES[@]}) else tarches=("${arch}") fi |