rebar/install

21 lines
422 B
Text
Raw Normal View History

#!/bin/bash
## Check path for exiting rebar instance -- if it's around, use it
## for compilation (NOT installation!)
`which -s rebar`
if [ $? == 0 ]; then
rebar compile ${@}
else
## Use raw erlc..
erlc -I include -o ebin src/*.erl
fi
2009-12-03 23:05:25 +00:00
if [ $? != 0 ]; then
exit $?
fi
## Use application installer to perform actual installation
## into erlang distro
export ERL_LIBS=`(cd .. && pwd)`
2009-11-30 16:57:20 +00:00
priv/rebar install ${@}