etcd-fs
etcd-fs copied to clipboard
go get fails: imports etcdfs: unrecognized import path "etcdfs"
I believe imports should be in format github.com/xetorthio/etcd-fs
instead of etcd-fs
...
The following patch fixed FTBFS for me:
--- a/etcdfs.go
+++ b/etcdfs.go
@@ -2,9 +2,9 @@
import (
"flag"
"log"
- . "etcdfs"
+ . "github.com/xetorthio/etcd-fs/src/etcdfs"
"github.com/hanwen/go-fuse/fuse/pathfs"
"github.com/hanwen/go-fuse/fuse/nodefs"
)
@onlyjob Could you please create a pull request with your patch?