We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bece6b3 commit a0b7cc8Copy full SHA for a0b7cc8
common/rsync-mirror.go
@@ -47,6 +47,7 @@ func Mirror(srcDir string) (mirrorDir string, cleanup func() error, err error) {
47
48
log.Infof("Mirror setup: rsync from %s to %s", srcPath, mirrorPath)
49
rsyncCmd := append(rsyncArgs, srcPath, mirrorPath)
50
+ log.Infof(" rsync args %v", rsyncCmd)
51
cmd := exec.Command("rsync", rsyncCmd...)
52
53
if out, err2 := cmd.CombinedOutput(); err2 != nil {
0 commit comments