aboutsummaryrefslogtreecommitdiffstats
path: root/util/mount.fuse
diff options
context:
space:
mode:
Diffstat (limited to 'util/mount.fuse')
-rw-r--r--util/mount.fuse5
1 files changed, 1 insertions, 4 deletions
diff --git a/util/mount.fuse b/util/mount.fuse
index db9562f..3ea6d9e 100644
--- a/util/mount.fuse
+++ b/util/mount.fuse
@@ -26,6 +26,7 @@ function die {
FSTYPE=${1%%\#*} # for now i have to be same as FUSE mount binary
# should be configurable
+export PATH
FSBIN=`which ${FSTYPE} 2>/dev/null` \
|| die "Can not find FUSE mount binary for FS ${FSTYPE}" 1
@@ -42,8 +43,4 @@ shift
OPTIONS=`echo $@ | sed 's/,user//'`
-export PATH
${FSTYPE} ${MOUNTPATH} ${MOUNTPOINT} ${OPTIONS}
-
-
-