Updated dep: go-fs

pull/3974/head
Rickard von Essen 10 years ago
parent 5f5ec9225f
commit f3265e92e0
No known key found for this signature in database
GPG Key ID: E0C0327388876CBA

@ -9,6 +9,7 @@ import (
"math"
"time"
"unicode/utf16"
"strings"
)
type DirectoryAttr uint8
@ -341,8 +342,8 @@ func DecodeDirectoryClusterEntry(data []byte) (*DirectoryClusterEntry, error) {
data[0] = 0xE5
}
result.name = string(data[0:8])
result.ext = string(data[8:11])
result.name = strings.TrimRight(string(data[0:8]), " ")
result.ext = strings.TrimRight(string(data[8:11]), " ")
// Creation time
createTimeTenths := data[13]

@ -459,7 +459,8 @@
{
"checksumSHA1": "mVqDwKcibat0IKAdzAhfGIHPwI8=",
"path": "github.com/mitchellh/go-fs",
"revision": "a34c1b9334e86165685a9449b782f20465eb8c69"
"revision": "4f9d2cb031e44bef60d0c00ccb3f31f68867e85e",
"revisionTime": "2016-09-29T19:58:49Z"
},
{
"checksumSHA1": "3ptHw3lJIghPRCAc05e5F4S0UMY=",

Loading…
Cancel
Save