@cryptotaxi247 / kubo / commits / dc6b54809

vendor fixed go-fuse-version

Juan Batiz-Benet committed Jan 13, 2015 at 21:33 UTC dc6b548094d086a9ec2c60167de67b9724ea1423
4 files changed +7 -4
Godeps/Godeps.json
+1 -1
@@ -114,7 +114,7 @@
114 },
115 {
116 "ImportPath": "github.com/jbenet/go-fuse-version",
117 - "Rev": "ff72c39433f95ada15f116fa493a51eeec2bd52e"
117 + "Rev": "c723f93ceeb1d1e21eb7fe6fd39aa21a9fe7db99"
118 },
119 {
120 "ImportPath": "github.com/jbenet/go-is-domain",
Godeps/_workspace/src/github.com/jbenet/go-fuse-version/version_bsd.go
+2 -1
@@ -3,9 +3,10 @@
3 package fuseversion
4
5 import (
6 + "fmt"
7 "runtime"
8 )
9
10 func getLocalFuseSystems() (*Systems, error) {
10 - return nil, fmt.Sprintf(notImplYet, runtime.GOARCH())
11 + return nil, fmt.Errorf(notImplYet, runtime.GOARCH)
12 }
Godeps/_workspace/src/github.com/jbenet/go-fuse-version/version_linux.go
+2 -1
@@ -1,9 +1,10 @@
1 package fuseversion
2
3 import (
4 + "fmt"
5 "runtime"
6 )
7
8 func getLocalFuseSystems() (*Systems, error) {
8 - return nil, fmt.Sprintf(notImplYet, runtime.GOARCH())
9 + return nil, fmt.Errorf(notImplYet, runtime.GOARCH)
10 }
Godeps/_workspace/src/github.com/jbenet/go-fuse-version/version_windows.go
+2 -1
@@ -1,9 +1,10 @@
1 package fuseversion
2
3 import (
4 + "fmt"
5 "runtime"
6 )
7
8 func getLocalFuseSystems() (*Systems, error) {
8 - return nil, fmt.Sprintf(notImplYet, runtime.GOARCH())
9 + return nil, fmt.Errorf(notImplYet, runtime.GOARCH)
10 }