mirror of
https://github.com/octoleo/restic.git
synced 2024-12-22 10:58:55 +00:00
sftp: Improve error handling for non-existing dir
This commit is contained in:
parent
3686b1ffe5
commit
f9a934759f
@ -141,6 +141,10 @@ func (r *SFTP) checkDataSubdirs() error {
|
||||
|
||||
// check if all paths for data/ exist
|
||||
entries, err := r.c.ReadDir(datadir)
|
||||
if r.IsNotExist(err) {
|
||||
return nil
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user