summaryrefslogtreecommitdiff
path: root/src/rebar_neotoma_compiler.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <essen@dev-extend.eu>2012-03-18 15:41:57 +0100
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-03-18 18:46:04 +0100
commit2c37270f5244143463ad1e348ebdbae4b0fcf8a6 (patch)
tree386ae2f4eac988c60d8261225e10392054129b87 /src/rebar_neotoma_compiler.erl
parent9d5557b16f4f4a1175b68984f6d7fab2db016c93 (diff)
Fix badarg crashes on missing dependency errors
Diffstat (limited to 'src/rebar_neotoma_compiler.erl')
-rw-r--r--src/rebar_neotoma_compiler.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_neotoma_compiler.erl b/src/rebar_neotoma_compiler.erl
index 46b77b0..a1712bf 100644
--- a/src/rebar_neotoma_compiler.erl
+++ b/src/rebar_neotoma_compiler.erl
@@ -75,12 +75,12 @@ compile_neo(Source, Target, Config) ->
case code:which(neotoma) of
non_existing ->
?ERROR(
- <<"~n===============================================~n"
+ "~n===============================================~n"
" You need to install neotoma to compile PEG grammars~n"
" Download the latest tarball release from github~n"
" https://github.com/seancribbs/neotoma~n"
" and install it into your erlang library dir~n"
- "===============================================~n~n">>, []),
+ "===============================================~n~n", []),
?FAIL;
_ ->
case needs_compile(Source, Target, Config) of