Fix luacheck installation on Travis

A trivial typo in .travis.yml caused luacheck to never run.

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2016-12-18 11:20:55 +01:00
parent ab38876b0d
commit 9dba9bbc90
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ install:
# Install busted for "make check-unit". # Install busted for "make check-unit".
- travis_retry sudo luarocks install busted - travis_retry sudo luarocks install busted
# Install luacheck for "make check-qa". # Install luacheck for "make check-qa".
- if [ "$DO_QUECKQA" = 1 ]; then travis_retry sudo luarocks install luacheck; fi - if [ "$DO_CHECKQA" = 1 ]; then travis_retry sudo luarocks install luacheck; fi
# Install ldoc for building docs. # Install ldoc for building docs.
- travis_retry sudo luarocks install ldoc 1.4.4 - travis_retry sudo luarocks install ldoc 1.4.4