1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-12-22 04:02:04 +03:00
Files
libhttp/ci/travis/install_rocks.sh
2015-05-02 00:02:42 +02:00

15 lines
265 B
Bash
Executable File

#!/bin/bash
set -ev
source ci/travis/lua_env.sh
# add any rocks required for ci_tests to this list
# lua-curl depends on a libcurl development package (i.e. libcurl4-openssl-dev)
ROCKS=(lua-curl busted)
for ROCK in ${ROCKS[*]}
do
$LUAROCKS install $ROCK
done