summaryrefslogtreecommitdiff
path: root/db-move
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-01-08 17:40:26 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-01-08 21:19:01 -0500
commit0811dea8b9c695ed9e67b22d389142956bd1cdd8 (patch)
tree8d300e5cf517ea53f72f22cbf6a3101c1667f2e7 /db-move
parent1bcc49058febc7e2723c455879da6ff3b9ca6576 (diff)
Fix quoting on arrays.
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 010d941..69f24ac 100755
--- a/db-move
+++ b/db-move
@@ -66,7 +66,7 @@ for pkgbase in ${args[@]:2}; do
if [ -f "${svnrepo_from}/PKGBUILD" ]; then
if [ "${pkgarch}" == 'any' ]; then
- tarches=(${ARCHES[@]})
+ tarches=("${ARCHES[@]}")
else
tarches=("${pkgarch}")
fi