From e7fc790e5aed304e5b0cb68a7132f0bfe04d17c0 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Tue, 26 Feb 2019 18:46:15 +0100 Subject: [PATCH] Don't use multiline strings for commands on Travis CI Commands would otherwise fail silently. --- .travis.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 67166d8..1c4c0d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,11 @@ addons: packages: - luarocks -before_install: | - pyenv global 3.6.3 - pip3 install --user pre-commit - luarocks install --local luacheck +install: + - pyenv global 3.6.3 + - pip3 install --user pre-commit + - luarocks install --local luacheck -script: | - "$HOME/.local/bin/pre-commit" run --all-files - "$HOME/.luarocks/bin/luacheck" . +script: + - $HOME/.local/bin/pre-commit run --all-files + - $HOME/.luarocks/bin/luacheck .