Skip to content

Commit

Permalink
Fix "ci: Fix the reporting in ci_lint.sh"
Browse files Browse the repository at this point in the history
This fixes commit dddaf0c.

The way to reliably `find` executable files is different on BSD, Mac
and Linux, unfortunately.
  • Loading branch information
ctruta committed Feb 17, 2024
1 parent dddaf0c commit 6b5a2da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/ci_lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function ci_lint_ci_scripts {
}
ci_info "## LINTING: CI scripts ##"
ci_spawn "$CI_SHELLCHECK" --version
find ./ci -name "*.sh" -perm +111 | {
find ./ci -maxdepth 1 -name "*.sh" | {
local my_file
while IFS="" read -r my_file
do
Expand Down

0 comments on commit 6b5a2da

Please sign in to comment.