diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-10-11 03:27:36 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-10-11 03:27:36 +0000 |
commit | 85ae134a796b8db8671bb7a749413ee669516fdb (patch) | |
tree | 4a028724c0e38c94b9e399f57a57573266f47d61 /Tools | |
parent | ddd72ac3873c5c9b03234f886157959902ffb5ef (diff) | |
download | ports-85ae134a796b8db8671bb7a749413ee669516fdb.tar.gz ports-85ae134a796b8db8671bb7a749413ee669516fdb.zip |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/clean-chroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/clean-chroot b/Tools/portbuild/scripts/clean-chroot index eba3889f8db8..5bd3bbe38c9c 100755 --- a/Tools/portbuild/scripts/clean-chroot +++ b/Tools/portbuild/scripts/clean-chroot @@ -65,7 +65,7 @@ if [ $noclean = 0 ]; then rm -rf ${chroot}/tmp/* for dir in ${cleandirs}; do if ! rm -rf ${chroot}${dir} >/dev/null 2>&1; then - chflags -R noschg ${chroot}${dir} + chflags -R noschg ${chroot}${dir} >/dev/null 2>&1 rm -rf ${chroot}${dir} >/dev/null 2>&1 fi done |