Skip to content

Commit e6d6015

Browse files
committed
Fix
1 parent d5a83f6 commit e6d6015

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/static.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ shellcheck --version
1313

1414
# Check shell scripts in bin and src directories
1515
echo "Checking shell scripts..."
16-
find bin src -name "*.sh" -type f 2>/dev/null | while read -r file; do
16+
find src -name '*.sh' -type f | while read -r file; do
1717
echo "Checking $file"
1818
shellcheck "$file"
1919
done
@@ -33,4 +33,4 @@ find src -name "*.zsh" -type f | while read -r file; do
3333
zsh -n "$file"
3434
done
3535

36-
echo "All static analysis tests passed!"
36+
echo "All static analysis tests passed!"

0 commit comments

Comments
 (0)