Skip to content

Commit

Permalink
🐛 set default http sync registry (#4120)
Browse files Browse the repository at this point in the history
Signed-off-by: cuisongliu <cuisongliu@qq.com>

# Conflicts:
#	pkg/filesystem/registry/sync.go
  • Loading branch information
cuisongliu committed Oct 20, 2023
1 parent b5efb59 commit a271984
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(), nil)
return ssh.CopyDir(s.ssh, target, localDir, s.pathResolver.RootFSRegistryPath(), nil)
})
}
return eg.Wait()
Expand Down

0 comments on commit a271984

Please sign in to comment.