From 831db52e442e12d1bf588460c4ab061e9e22062a Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 4 Oct 2024 01:40: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 a3f77c4..9119a99 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