forked from TrueCloudLab/restic
simplified prefix removal, removed unnecessary if-else statements
This commit is contained in:
parent
16eeed2ad5
commit
02014be76c
4 changed files with 4 additions and 16 deletions
|
@ -47,9 +47,7 @@ func ParseConfig(s string) (interface{}, error) {
|
|||
return nil, errors.New("azure: invalid format: bucket name or path not found")
|
||||
}
|
||||
container, path := data[0], path.Clean(data[1])
|
||||
if strings.HasPrefix(path, "/") {
|
||||
path = path[1:]
|
||||
}
|
||||
path = strings.TrimPrefix(path, "/")
|
||||
cfg := NewConfig()
|
||||
cfg.Container = container
|
||||
cfg.Prefix = path
|
||||
|
|
|
@ -49,9 +49,7 @@ func ParseConfig(s string) (interface{}, error) {
|
|||
|
||||
bucket, path := data[0], path.Clean(data[1])
|
||||
|
||||
if strings.HasPrefix(path, "/") {
|
||||
path = path[1:]
|
||||
}
|
||||
path = strings.TrimPrefix(path, "/")
|
||||
|
||||
cfg := NewConfig()
|
||||
cfg.Bucket = bucket
|
||||
|
|
6
internal/cache/cache.go
vendored
6
internal/cache/cache.go
vendored
|
@ -175,11 +175,7 @@ const MaxCacheAge = 30 * 24 * time.Hour
|
|||
|
||||
func validCacheDirName(s string) bool {
|
||||
r := regexp.MustCompile(`^[a-fA-F0-9]{64}$`)
|
||||
if !r.MatchString(s) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
return r.MatchString(s)
|
||||
}
|
||||
|
||||
// listCacheDirs returns the list of cache directories.
|
||||
|
|
6
internal/cache/file.go
vendored
6
internal/cache/file.go
vendored
|
@ -214,9 +214,5 @@ func (c *Cache) Has(h restic.Handle) bool {
|
|||
}
|
||||
|
||||
_, err := fs.Stat(c.filename(h))
|
||||
if err == nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
return err == nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue