Skip to content

Commit

Permalink
Fix 'command not found'
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmerz committed Feb 18, 2022
1 parent 9c93748 commit d6c0499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
find ./*/ -type f | while read -r sh; do
if [ "$(file --brief --mime-type "$sh")" == 'text/x-shellscript' ]; then
echo "shellcheck'ing $sh"
if ! shellcheck --color=always --severity=warning --exclude=SC1091,SC1090 "$sh"; then
if ! shellcheck-stable/shellcheck --color=always --severity=warning --exclude=SC1091,SC1090 "$sh"; then
touch some_scripts_have_failed_shellcheck
fi
fi
Expand Down

0 comments on commit d6c0499

Please sign in to comment.