diff options
author | Jakob Unterwurzacher | 2017-02-15 23:02:01 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-02-15 23:02:01 +0100 |
commit | ce2e610428c940c2bd5ca1790e7375117b1f6015 (patch) | |
tree | 08563c5e36b8d285390f897cd122e7e1aa8f6fc4 /test.bash | |
parent | 6be7808992a1d9562b113b13831cd6d6a40114d6 (diff) |
OSX compat: replace fusermount calls with fuse-unmount.bash
Mac OS X does not have fusermount and uses umount instead.
The fuse-unmount.bash calls the appropriate command.
Diffstat (limited to 'test.bash')
-rwxr-xr-x | test.bash | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -18,9 +18,10 @@ if ! flock --nonblock 200 ; then fi # Clean up dangling filesystems +source tests/fuse-unmount.bash for i in $(cat /proc/mounts | grep $TESTDIR | cut -f2 -d" "); do echo "Warning: unmounting leftover filesystem: $i" - fusermount -u $i + fuse-unmount $i done source build-without-openssl.bash |