mirror of
https://github.com/TangentFoxy/argparse.git
synced 2025-07-27 18:42:20 +00:00
16 lines
457 B
Bash
16 lines
457 B
Bash
# A script for setting up Lua rocks for travis-ci testing.
|
|
|
|
sudo luarocks install dkjson --deps-mode=none
|
|
|
|
mkdir busted
|
|
wget -O - https://api.github.com/repos/Olivine-Labs/busted/tarball/master | tar xz -C busted --strip-components=1
|
|
cd busted
|
|
sudo luarocks make busted-scm-0.rockspec
|
|
cd ..
|
|
|
|
mkdir luacheck
|
|
wget -O - https://api.github.com/repos/mpeterv/luacheck/tarball/master | tar xz -C luacheck --strip-components=1
|
|
cd luacheck
|
|
sudo luarocks make
|
|
cd ..
|