Skip to content

Commit

Permalink
Check root for eip files (ethereum#2932)
Browse files Browse the repository at this point in the history
  • Loading branch information
lightclient authored Sep 3, 2020
1 parent 6fce40f commit e6abd0e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ elif [[ $TASK = 'htmlproofer-external' ]]; then
bundle exec jekyll build
bundle exec htmlproofer $HTMLPROOFER_OPTIONS --external_only
elif [[ $TASK = 'eip-validator' ]]; then
if [[ $(find . -maxdepth 1 -name 'eip-*' | wc -l) -ne 1 ]]; then
echo "only 'eip-template.md' should be in the root"
exit 1
fi
eipv EIPS/ --ignore=title_max_length,missing_discussions_to --skip=eip-20-token-standard.md
elif [[ $TASK = 'codespell' ]]; then
codespell -q4 -I .codespell-whitelist -S ".git,Gemfile.lock,**/*.png,**/*.gif,**/*.jpg,**/*.svg,.codespell-whitelist,vendor,_site,_config.yml,style.css"
Expand Down

0 comments on commit e6abd0e

Please sign in to comment.