blob: d926fd3b60485b1c44674f35b94a2402168a4706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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
priv/rebar install ${@}
|