diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-02-13 04:03:10 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-02-13 04:03:10 +0100 |
commit | 59b7a739e8436d02136bd6483115f23fe19860e0 (patch) | |
tree | 32606e6aadc1a868a13e7d306fab6c9e511902df /makechrootpkg | |
parent | 9e14e8691d6b60d82ab553252a79cc5e61e2d40d (diff) | |
download | devtools32-59b7a739e8436d02136bd6483115f23fe19860e0.tar.xz |
inform the user of activities that might take a longer time0.9.1
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 |