We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d6049c1 + f8c1651 commit ad8ea13Copy full SHA for ad8ea13
pkg/minikube/bootstrapper/exec_runner.go
@@ -75,7 +75,7 @@ func (*ExecRunner) Copy(f assets.CopyableFile) error {
75
if err != nil {
76
return errors.Wrapf(err, "error converting permissions %s to integer", perms)
77
}
78
- if err := target.Chmod(os.FileMode(perms)); err != nil {
+ if err := os.Chmod(targetPath, os.FileMode(perms)); err != nil {
79
return errors.Wrapf(err, "error changing file permissions for %s", targetPath)
80
81
0 commit comments