From 0aa0536eacdef248bba6ab2d2418da8832640ab1 Mon Sep 17 00:00:00 2001 From: Matt Moore Date: Mon, 17 Jul 2023 17:21:48 -0700 Subject: [PATCH] Correct the variable name in the patch pipeline Signed-off-by: Matt Moore --- pkg/build/pipelines/patch.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/build/pipelines/patch.yaml b/pkg/build/pipelines/patch.yaml index d4f5f1978..5e148f0c5 100644 --- a/pkg/build/pipelines/patch.yaml +++ b/pkg/build/pipelines/patch.yaml @@ -25,7 +25,7 @@ pipeline: if [ -z $series ]; then if [ -n '${{inputs.patches}}' ]; then series=$(mktemp) - echo '${{input.patches}}' | awk '{ for(i = 1; i <= NF; i++) { print $i; } }' > $series + echo '${{inputs.patches}}' | awk '{ for(i = 1; i <= NF; i++) { print $i; } }' > $series else echo "ERROR: Neither patches or series was set." exit 1