From d8f97ea0035f79dfbcec2153316ce313bd6ee68b Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Mon, 19 Oct 2020 10:09:27 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20invalid=20comment=20on=20Task=20Script=20?= =?UTF-8?q?=F0=9F=91=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Args are passed to the script in case of using Script. Signed-off-by: Vincent Demeester --- pkg/apis/pipeline/v1beta1/task_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/apis/pipeline/v1beta1/task_types.go b/pkg/apis/pipeline/v1beta1/task_types.go index 6899a62980c..0df5d91f906 100644 --- a/pkg/apis/pipeline/v1beta1/task_types.go +++ b/pkg/apis/pipeline/v1beta1/task_types.go @@ -123,7 +123,7 @@ type Step struct { // Script is the contents of an executable file to execute. // - // If Script is not empty, the Step cannot have an Command or Args. + // If Script is not empty, the Step cannot have an Command and the Args will be passed to the Script. Script string `json:"script,omitempty"` // Timeout is the time after which the step times out. Defaults to never. // Refer to Go's ParseDuration documentation for expected format: https://golang.org/pkg/time/#ParseDuration