Skip to content

Commit

Permalink
Fix unnecessary conversion (unconvert) (#6607)
Browse files Browse the repository at this point in the history
  • Loading branch information
tstromberg authored Feb 13, 2020
1 parent f528df1 commit d07412f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/preload-images/preload_images.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func copyTarballToHost() error {
}

dest := filepath.Join("out/", tarballFilename)
args := []string{"scp", "-o", "StrictHostKeyChecking=no", "-i", string(sshKey), fmt.Sprintf("docker@%s:/home/docker/%s", ip, tarballFilename), dest}
args := []string{"scp", "-o", "StrictHostKeyChecking=no", "-i", sshKey, fmt.Sprintf("docker@%s:/home/docker/%s", ip, tarballFilename), dest}
_, err = runCmd(args)
return err
}
Expand Down

0 comments on commit d07412f

Please sign in to comment.