Commit 6fc3efaa authored by Jakob Unterwurzacher's avatar Jakob Unterwurzacher

Fix hardcoded fusermount path

Fixes issue #69
parent 1b3f7953
......@@ -135,7 +135,7 @@ func lookPathFallback(file string, fallbackDir string) (string, error) {
func init() {
var err error
fusermountBinary, err = lookPathFallback("/bin/fusermount", "/bin")
fusermountBinary, err = lookPathFallback("fusermount", "/bin")
if err != nil {
log.Fatalf("Could not find fusermount binary: %v", err)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment