Skip to content

Commit

Permalink
fix sync image (#4119)
Browse files Browse the repository at this point in the history
  • Loading branch information
bxy4543 committed Oct 19, 2023
1 parent 34236b4 commit b5efb59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/filesystem/registry/sync.go
Expand Up @@ -150,7 +150,7 @@ func syncViaSSH(s *impl, targets []string) func(context.Context, string) error {
for i := range targets {
target := targets[i]
eg.Go(func() error {
return ssh.CopyDir(s.ssh, target, localDir, s.pathResolver.RootFSPath(), constants.IsRegistryDir)
return ssh.CopyDir(s.ssh, target, localDir, s.pathResolver.RootFSPath(), nil)
})
}
return eg.Wait()
Expand Down

0 comments on commit b5efb59

Please sign in to comment.