From 9dba9bbc90ffdab820a044e47722ef459b9cf73c Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sun, 18 Dec 2016 11:20:55 +0100 Subject: [PATCH] Fix luacheck installation on Travis A trivial typo in .travis.yml caused luacheck to never run. Signed-off-by: Uli Schlachter --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 55014ebb..c50c925c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -86,7 +86,7 @@ install: # Install busted for "make check-unit". - travis_retry sudo luarocks install busted # 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. - travis_retry sudo luarocks install ldoc 1.4.4