You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd:=exec.Command(binary, args...) //nolint:gosec // We don't care about command injection here.
220
+
cmd:=exec.CommandContext(ctx, binary, args...) //nolint:gosec // We don't care about command injection here.
221
221
222
222
out, err:=cmd.CombinedOutput()
223
223
_=os.WriteFile(filepath.Join(input.LogFolder, "clusterctl-upgrade.log"), out, 0644) //nolint:gosec // this is a log file to be shared via prow artifacts
cmd:=exec.Command(clusterctlBinaryPath, args...) //nolint:gosec // We don't care about command injection here.
404
+
cmd:=exec.CommandContext(ctx, clusterctlBinaryPath, args...) //nolint:gosec // We don't care about command injection here.
405
405
out, err:=cmd.Output()
406
406
_=os.WriteFile(filepath.Join(input.LogFolder, fmt.Sprintf("%s-cluster-template.yaml", input.ClusterName)), out, 0644) //nolint:gosec // this is a log file to be shared via prow artifacts
0 commit comments