From 6b162f5156f1456541c160233b6a2145df500898 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 18 Jun 2014 21:43:43 -0400 Subject: db-move: fix some quoting --- db-move | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3-2-g168b