From 934d5a12c1bbb80742061c0efde4aae1aeea4361 Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Tue, 9 May 2023 02:38:31 +0100 Subject: [PATCH] updated gitlab_validate_ci_yaml.sh --- gitlab/gitlab_validate_ci_yaml.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab/gitlab_validate_ci_yaml.sh b/gitlab/gitlab_validate_ci_yaml.sh index f292da39..566bab16 100755 --- a/gitlab/gitlab_validate_ci_yaml.sh +++ b/gitlab/gitlab_validate_ci_yaml.sh @@ -60,7 +60,7 @@ fi content="$(sed 's/#.*//; /^[[:space:]]*$/d' "$filename")" -json_content="$("$srcdir/yaml2json.sh" <<< "$content")" +json_content="$("$srcdir/../bin/yaml2json.sh" <<< "$content")" # escape quotes and must not have any indentations and be on one line json_content_escaped="$(sed 's/"/\\"/g;s/^[[:space:]]*//;' <<< "$json_content" | tr -d '\n')"