What does head -1 ./rebar say? It seems like your rebar script is looking for escript in the wrong location.
- legoscia
1 Answers
3
votes
You should change in the beginning of rebar file:
#!/usr/bin/env escript
to:
#!/usr/local/bin/env escript
or just:
#!/usr/local/bin/escript
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
head -1 ./rebarsay? It seems like your rebar script is looking for escript in the wrong location. - legoscia