diff options
Diffstat (limited to 'makechrootpkg')
-rwxr-xr-x | makechrootpkg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/makechrootpkg b/makechrootpkg index d8e03ba..e1fab77 100755 --- a/makechrootpkg +++ b/makechrootpkg @@ -107,9 +107,10 @@ fi umask 000 if [ ! -d "$copydir" -o "$clean_first" -eq "1" ]; then - echo "creating clean working copy" + echo -n 'creating clean working copy...' mkdir -p "$copydir" rsync -a --delete -q -W -x "$chrootdir/root/" "$copydir" + echo 'done' fi if [ -n "$install_pkg" ]; then |