Skip to content

Commit

Permalink
exclude "*-mac" files from shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
umaranis committed Sep 13, 2023
1 parent c5b7fd2 commit 65dd89b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
echo "########## clang-tidy-15 ##########"
clang-tidy-15 src/* -- -I/usr/include -I/usr/include/ncursesw
echo "########## shellcheck ##########"
find plugins/ -type f -not -name "*.md" -exec shellcheck {} +
find plugins/ -type f ! \( -name "*.md" -o -name "*-mac" \) -exec shellcheck {} +
package-and-publish:
machine: true
Expand Down
1 change: 0 additions & 1 deletion plugins/cbcopy-mac
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/osascript
# shellcheck disable=all

# Description: Copy the hovered file to MacOS clipboard.
#
Expand Down

0 comments on commit 65dd89b

Please sign in to comment.