diff --git a/cmd/vcs.go b/cmd/vcs.go index 055f644..dc7c291 100644 --- a/cmd/vcs.go +++ b/cmd/vcs.go @@ -483,7 +483,8 @@ func restoreAllSnapshots(store *Store, repoDir string) error { entries, err := os.ReadDir(targetDir) if err != nil { if os.IsNotExist(err) { - return fmt.Errorf("no existing stores found") + fmt.Printf("no existing stores found, not restoring") + return nil } return err }