Canonical path is actually otremblay.com/jkl
Also we use go dep instead of godeps
This commit is contained in:
parent
edc5120921
commit
1458b63287
8 changed files with 110 additions and 42 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue