Skip to content

Commit 74d6d5e

Browse files
committed
fix: remove unnecessary grep line in fmt script
1 parent fdde5a8 commit 74d6d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/dev/fmt.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ main() {
3030
doctoc --title '# Contributing' doc/CONTRIBUTING.md > /dev/null
3131
doctoc --title '# iPad' doc/ipad.md > /dev/null
3232

33-
if [[ ${CI-} && $(git ls-files --other --modified --exclude-standard | grep -v "lib/vscode") ]]; then
33+
if [[ ${CI-} && $(git ls-files --other --modified --exclude-standard) ]]; then
3434
echo "Files need generation or are formatted incorrectly:"
3535
git -c color.ui=always status | grep --color=no '\[31m'
3636
echo "Please run the following locally:"

0 commit comments

Comments
 (0)