Archived
1
0

fix: remove unnecessary grep line in fmt script

This commit is contained in:
Joe Previte 2020-12-17 10:00:32 -07:00
parent fdde5a87a5
commit 74d6d5e1e1
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -30,7 +30,7 @@ main() {
doctoc --title '# Contributing' doc/CONTRIBUTING.md > /dev/null doctoc --title '# Contributing' doc/CONTRIBUTING.md > /dev/null
doctoc --title '# iPad' doc/ipad.md > /dev/null doctoc --title '# iPad' doc/ipad.md > /dev/null
if [[ ${CI-} && $(git ls-files --other --modified --exclude-standard | grep -v "lib/vscode") ]]; then if [[ ${CI-} && $(git ls-files --other --modified --exclude-standard) ]]; then
echo "Files need generation or are formatted incorrectly:" echo "Files need generation or are formatted incorrectly:"
git -c color.ui=always status | grep --color=no '\[31m' git -c color.ui=always status | grep --color=no '\[31m'
echo "Please run the following locally:" echo "Please run the following locally:"