summarylogtreecommitdiffstats
path: root/mount.exfat
diff options
context:
space:
mode:
Diffstat (limited to 'mount.exfat')
-rw-r--r--mount.exfat6
1 files changed, 3 insertions, 3 deletions
diff --git a/mount.exfat b/mount.exfat
index f5ebfd8f08bf..9f79811730cf 100644
--- a/mount.exfat
+++ b/mount.exfat
@@ -1,6 +1,6 @@
#!/bin/sh
-if (cat /proc/filesystems | grep exfat) ; then
- mount -i -t exfat "$@"
+if (cat /proc/filesystems|grep exfat>/dev/null) ; then
+ mount -i -t exfat "$@"
else
- mount.exfat-fuse "$@"
+ mount.exfat-fuse "$@"
fi