mirror of
https://github.com/lammertb/libhttp.git
synced 2025-12-22 04:02:04 +03:00
15 lines
265 B
Bash
Executable File
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
|
|
|