From 7b7599176b406bf6a3372cd972dfe48b6d6f377f Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 28 Sep 2024 15:00:34 +0900 Subject: [PATCH] tools: Update tidy.sh --- tools/tidy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tidy.sh b/tools/tidy.sh index a3f77c49..9119a998 100755 --- a/tools/tidy.sh +++ b/tools/tidy.sh @@ -445,7 +445,7 @@ if [[ -n "$(ls_files '*action.yml')" ]]; then for p in $(ls_files '*action.yml'); do if [[ "${p##*/}" == "action.yml" ]]; then actions+=("${p}") - if grep -Fq 'shell: bash' "${p}"; then + if ! grep -Fq 'shell: sh' "${p}"; then bash_files+=("${p}") fi fi