From aaaaf5fd08bd4932a04f3bb6fc0ef7bf644fa480 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Tue, 21 Sep 2021 09:07:11 +0200 Subject: [PATCH] fix(tools): fix badly written shell file --- script/actions_utils/container_timestamp_check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/actions_utils/container_timestamp_check.sh b/script/actions_utils/container_timestamp_check.sh index a36181f5f..e6cda5bcd 100755 --- a/script/actions_utils/container_timestamp_check.sh +++ b/script/actions_utils/container_timestamp_check.sh @@ -59,7 +59,7 @@ ENV_JSON=$(curl \ "${ENV_IMG_ENDPOINT_URL}") ENV_IMG_TIMESTAMP=$(echo "${ENV_JSON}" | \ -jq -rc '.[] | select(.metadata.container.tags[] | contains("latest")).updated_at' +jq -rc '.[] | select(.metadata.container.tags[] | contains("latest")).updated_at') echo "Base timestamp: ${BASE_IMG_TIMESTAMP}" echo "Env timestamp: ${ENV_IMG_TIMESTAMP}"