diff --git a/_en/quality/luacheck.md b/_en/quality/luacheck.md index ed46786..d32aee1 100644 --- a/_en/quality/luacheck.md +++ b/_en/quality/luacheck.md @@ -131,7 +131,7 @@ addons: before_install: - luarocks install --local luacheck script: -- $HOME/.luarocks/bin/luacheck --no-color . +- $HOME/.luarocks/bin/luacheck . notifications: email: false ``` @@ -140,7 +140,7 @@ If your project is a game rather than a mod or mod pack, change the line after `script:` to: ```yml -- $HOME/.luarocks/bin/luacheck --no-color mods/ +- $HOME/.luarocks/bin/luacheck mods/ ``` Now commit and push to Github. Go to your project's page on Github, and click diff --git a/_en/quality/unit_testing.md b/_en/quality/unit_testing.md index 475fd7c..4086279 100644 --- a/_en/quality/unit_testing.md +++ b/_en/quality/unit_testing.md @@ -176,7 +176,7 @@ addons: before_install: - luarocks install --local luacheck && luarocks install --local busted script: -- $HOME/.luarocks/bin/luacheck --no-color . +- $HOME/.luarocks/bin/luacheck . - $HOME/.luarocks/bin/busted . notifications: email: false