Skip to content

Commit

Permalink
Add "license.md" to the list of files Travis verifies
Browse files Browse the repository at this point in the history
  • Loading branch information
tianon committed Dec 13, 2017
1 parent 0b388c1 commit d1216ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis/check-required-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ exitCode=0
for requiredFile in \
content.md \
github-repo \
license.md \
maintainer.md \
; do
failed=''
for repo in */; do
case "${repo%/}" in
scratch) continue ;;
esac
if [ ! -e "$repo/$requiredFile" ]; then
if [ ! -s "$repo/$requiredFile" ]; then
failed+=" $repo"
fi
done
Expand Down

0 comments on commit d1216ed

Please sign in to comment.