makechrootpkg: Ensure SRC/PKGDEST are directories

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Andrea Scarpino 2009-10-06 09:22:49 -07:00 committed by Aaron Griffin
parent 54ae50500b
commit fd82cb3eb7
1 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,7 @@ if mkarchroot -r "/chrootbuild" "$uniondir"; then
popd >/dev/null
fi
if [ -n "$PKGDEST" ]; then
if [ -d "$PKGDEST" ]; then
echo "Moving completed ${_pkgname%${PKGEXT}} package file to ${PKGDEST}"
mv "$pkgfile" "${PKGDEST}"
else
@ -247,7 +247,7 @@ if mkarchroot -r "/chrootbuild" "$uniondir"; then
for f in "${chrootdir}"/union/srcdest/*; do
[ -e "$f" ] || continue
if [ -n "$SRCDEST" ]; then
if [ -d "$SRCDEST" ]; then
echo "Moving downloaded source file $(basename $f) to ${SRCDEST}"
mv "$f" "${SRCDEST}"
else