summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-06-18 21:43:43 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-06-18 21:43:43 -0400
commit6b162f5156f1456541c160233b6a2145df500898 (patch)
treea7b3b239ebcbe8fa3b65bb6d2d517b85da8c53de
parentaae3b0a2490d65832547f29327f9e8828442a48d (diff)
db-move: fix some quoting
-rwxr-xr-xdb-move2
1 files changed, 1 insertions, 1 deletions
diff --git a/db-move b/db-move
index 2c7c19e..f48ce4f 100755
--- a/db-move
+++ b/db-move
@@ -27,7 +27,7 @@ done
# First loop is to check that all necessary files exist
for pkgbase in "${args[@]:2}"; do
for pkgarch in "${ARCHES[@]}" 'any'; do
- xbsrepo_from="$(xbs releasepath ${pkgbase} ${repo_from} ${pkgarch})"
+ xbsrepo_from="$(xbs releasepath "${pkgbase}" "${repo_from}" "${pkgarch}")"
if [ -r "${xbsrepo_from}/PKGBUILD" ]; then
pkgnames=($(. "${xbsrepo_from}/PKGBUILD"; echo "${pkgname[@]}"))
if [ ${#pkgnames[@]} -lt 1 ]; then