xetorthio / etcd-fs

Use etcd as a filesystem
Apache License 2.0
182 stars 31 forks source link

go get fails: imports etcdfs: unrecognized import path "etcdfs" #9

Open onlyjob opened 9 years ago

onlyjob commented 9 years ago

I believe imports should be in format github.com/xetorthio/etcd-fs instead of etcd-fs...

onlyjob commented 9 years ago

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"
 )
artheus commented 7 years ago

@onlyjob Could you please create a pull request with your patch?