makechrootpkg: Remove some extra packages

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Eric Bélanger 2009-08-18 15:48:51 -07:00 committed by Aaron Griffin
parent 7fa8af659c
commit b7c19c56b8
1 changed files with 2 additions and 2 deletions

View File

@ -254,10 +254,10 @@ if mkarchroot -r "/chrootbuild" "$uniondir"; then
for f in ${chrootdir}/union/srcdest/*; do
[ -e "$f" ] || continue
if [ -n "$SRCDEST" ]; then
echo "Moving downloaded source file ($(basename $f) to ${SRCDEST}"
echo "Moving downloaded source file $(basename $f) to ${SRCDEST}"
mv "$f" "${SRCDEST}"
else
echo "Moving downloaded source file ($(basename $f) to ${WORKDIR}"
echo "Moving downloaded source file $(basename $f) to ${WORKDIR}"
mv "$f" "${WORKDIR}"
fi
done