etcd-fs icon indicating copy to clipboard operation
etcd-fs copied to clipboard

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

Open onlyjob opened this issue 9 years ago • 2 comments

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

onlyjob avatar Sep 12 '15 05:09 onlyjob

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 avatar Nov 02 '15 03:11 onlyjob

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

artheus avatar May 10 '17 20:05 artheus