rebar/install

14 lines
244 B
Text
Raw Normal View History

#!/bin/bash
# Fail on first error
set -e
## Compile
erlc -I include -o ebin src/*.erl
## Use application installer to perform actual installation
## into erlang distro
export ERL_LIBS=`(cd .. && pwd)`
echo $ERL_LIBS
2009-11-30 16:57:20 +00:00
priv/rebar install ${@}