From 5fc1f85ad9cd84afb77fe3b2306988d837992939 Mon Sep 17 00:00:00 2001 From: Ville Brofeldt <33317356+villebro@users.noreply.github.com> Date: Thu, 11 Feb 2021 15:40:44 +0200 Subject: [PATCH] fix(ci): multiline regex in change detection (#13075) * fix(ci): multiline regex in change detection * fix shellcheck issues --- scripts/ci_check_no_file_changes.sh | 30 +++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/scripts/ci_check_no_file_changes.sh b/scripts/ci_check_no_file_changes.sh index 2699ae8433a96..967da5f07a67f 100755 --- a/scripts/ci_check_no_file_changes.sh +++ b/scripts/ci_check_no_file_changes.sh @@ -26,12 +26,7 @@ URL="https://api.github.com/repos/${GITHUB_REPO}/pulls/${PR_NUMBER}/files" FILES=$(curl -s -X GET -G "${URL}" | jq -r '.[] | .filename') -cat<