diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/chroot-here.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/chroot-here.sh b/tools/chroot-here.sh index 7c20805..63442b6 100755 --- a/tools/chroot-here.sh +++ b/tools/chroot-here.sh @@ -64,7 +64,7 @@ function mountDir() { function umountDir() { local dir=$1 echo -n "Unmounting ${dir} ... " - umount "${PWD}/${dir}" 2&>/dev/null + umount --lazy "${PWD}/${dir}" 2&>/dev/null echo "done." } |