summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmakechrootpkg4
1 files changed, 2 insertions, 2 deletions
diff --git a/makechrootpkg b/makechrootpkg
index ac9c3e6..06ce182 100755
--- a/makechrootpkg
+++ b/makechrootpkg
@@ -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