From 4216c7d02cbabfa0d1fa58d9e65832bd34f31d1e Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Fri, 22 Nov 2024 23:16:03 +0000 Subject: [PATCH] fix bad jq --- .github/scripts/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/check.sh b/.github/scripts/check.sh index e1f1411..74095de 100755 --- a/.github/scripts/check.sh +++ b/.github/scripts/check.sh @@ -110,7 +110,7 @@ force_redeploy_registry () { fi local latest_date_ts_seconds - latest_date_ts_seconds=$(echo "${latest_res}" | jq '.deployments[0].createdAt/1000|floor)') + latest_date_ts_seconds=$(echo "${latest_res}" | jq '.deployments[0].createdAt/1000|floor') local current_date_ts_seconds current_date_ts_seconds="$(date +%s)" local max_redeploy_interval_seconds=7200 # 2 hours