summaryrefslogtreecommitdiff
path: root/db-move
diff options
context:
space:
mode:
Diffstat (limited to 'db-move')
-rwxr-xr-xdb-move9
1 files changed, 5 insertions, 4 deletions
diff --git a/db-move b/db-move
index f48ce4f..89a0ad6 100755
--- a/db-move
+++ b/db-move
@@ -64,17 +64,18 @@ for pkgbase in "${args[@]:2}"; do
arches=($(xbs move "${repo_from}" "${repo_to}" "${pkgbase}"))
# move the package in ftp
for pkgarch in "${arches[@]}"; do
- dir_to="$(xbs releasepath "$pkgbase" "$repo_to" "$pkgarch")"
- if true; then # to add in indent level to make merging easier
+ xbsrepo_to="$(xbs releasepath "$pkgbase" "$repo_to" "$pkgarch")"
+ if true; then # to add an indent level to make merging easier
if [ "${pkgarch}" == 'any' ]; then
tarches=("${ARCHES[@]}")
else
tarches=("${pkgarch}")
fi
- pkgnames=($(. "${dir_to}/PKGBUILD"; echo "${pkgname[@]}"))
+ msg2 "%s (%s)" "${pkgbase}" "${tarches[*]}"
+ pkgnames=($(. "${xbsrepo_to}/PKGBUILD"; echo "${pkgname[@]}"))
for pkgname in "${pkgnames[@]}"; do
- pkgver=$(. "${dir_to}/PKGBUILD"; get_full_version "${pkgname}")
+ pkgver=$(. "${xbsrepo_to}/PKGBUILD"; get_full_version "${pkgname}")
for tarch in "${tarches[@]}"; do
pkgpath=$(getpkgfile "${ftppath_from}/${tarch}/${pkgname}-${pkgver}-${pkgarch}"${PKGEXT})
pkgfile="${pkgpath##*/}"