diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-18 21:43:43 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-18 21:43:43 -0400 |
commit | 6b162f5156f1456541c160233b6a2145df500898 (patch) | |
tree | a7b3b239ebcbe8fa3b65bb6d2d517b85da8c53de /db-move | |
parent | aae3b0a2490d65832547f29327f9e8828442a48d (diff) |
db-move: fix some quoting
Diffstat (limited to 'db-move')
-rwxr-xr-x | db-move | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |