Commit dc6b5480 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

vendor fixed go-fuse-version

parent 102c43a3
......@@ -114,7 +114,7 @@
},
{
"ImportPath": "github.com/jbenet/go-fuse-version",
"Rev": "ff72c39433f95ada15f116fa493a51eeec2bd52e"
"Rev": "c723f93ceeb1d1e21eb7fe6fd39aa21a9fe7db99"
},
{
"ImportPath": "github.com/jbenet/go-is-domain",
......
......@@ -3,9 +3,10 @@
package fuseversion
import (
"fmt"
"runtime"
)
func getLocalFuseSystems() (*Systems, error) {
return nil, fmt.Sprintf(notImplYet, runtime.GOARCH())
return nil, fmt.Errorf(notImplYet, runtime.GOARCH)
}
package fuseversion
import (
"fmt"
"runtime"
)
func getLocalFuseSystems() (*Systems, error) {
return nil, fmt.Sprintf(notImplYet, runtime.GOARCH())
return nil, fmt.Errorf(notImplYet, runtime.GOARCH)
}
package fuseversion
import (
"fmt"
"runtime"
)
func getLocalFuseSystems() (*Systems, error) {
return nil, fmt.Sprintf(notImplYet, runtime.GOARCH())
return nil, fmt.Errorf(notImplYet, runtime.GOARCH)
}
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