From ea8b7754ba53e5b4ed81014d35e5b0298c92211e Mon Sep 17 00:00:00 2001 From: Jose Carlos Venegas Munoz Date: Thu, 13 Feb 2020 20:53:32 +0000 Subject: [PATCH] lib: yq: explode anchors to get real value of image values yq is not exploding anchors anymore and requiere an extra flag. Add flag to fix CI. Fixes: #934 Signed-off-by: Jose Carlos Venegas Munoz --- scripts/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib.sh b/scripts/lib.sh index f043fc0f2a..7797c2ddb7 100644 --- a/scripts/lib.sh +++ b/scripts/lib.sh @@ -57,7 +57,7 @@ get_from_kata_deps() { echo "Download from ${yaml_url}" >&2 curl --silent -o "${versions_file}" "$yaml_url" fi - result=$("${GOPATH}/bin/yq" read "$versions_file" "$dependency") + result=$("${GOPATH}/bin/yq" read -X "$versions_file" "$dependency") [ "$result" = "null" ] && result="" echo "$result" }