1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-16 00:00:05 +01:00

fixed integration_helper

This commit is contained in:
jgfrm 2017-02-06 17:19:58 +01:00
parent 9c5b66e0a1
commit 0dd8a0fe01

View file

@ -35,9 +35,9 @@ func walkDir(dir string) <-chan *dirEntry {
return nil
}
stat, err := restic.ToStatT(info.Sys())
stat, ok := restic.ToStatT(info.Sys())
if !err {
if !ok {
return nil
}