Canonical path is actually otremblay.com/jkl

Also we use go dep instead of godeps
This commit is contained in:
Olivier Tremblay 2017-10-05 19:18:06 -04:00
parent edc5120921
commit 1458b63287
No known key found for this signature in database
GPG key ID: D1C73ACB855E3A6D
8 changed files with 110 additions and 42 deletions

View file

@ -12,7 +12,7 @@ hell
Issue Type: Sometype
this is ignored
Summary: Dookienator
also ignored`, "\n"))
also ignored`, "\n"), nil)
AssertEqual(t, `Cowboys
from
hell`, iss.Fields.Description)

View file

@ -32,7 +32,7 @@ func (f *jklfile) String() string {
func (f *jklfile) Write(data []byte, off int64) (uint32, fuse.Status) {
n, err := f.File.WriteAt(data, off)
if err != nil {
return uint32(0),fuse.EACCES
return uint32(0), fuse.EACCES
}
return uint32(n), fuse.OK
}
@ -76,3 +76,7 @@ func (f *jklfile) SetInode(i *nodefs.Inode) {}
func (f *jklfile) Utimens(atime *time.Time, mtime *time.Time) fuse.Status {
return fuse.EPERM
}
func (f *jklfile) Flock(flags int) fuse.Status {
return fuse.ENOSYS
}