diff options
Diffstat (limited to 'src/rebar_abnfc_compiler.erl')
-rw-r--r-- | src/rebar_abnfc_compiler.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_abnfc_compiler.erl b/src/rebar_abnfc_compiler.erl index db9e029..5bad8c0 100644 --- a/src/rebar_abnfc_compiler.erl +++ b/src/rebar_abnfc_compiler.erl @@ -85,12 +85,12 @@ compile_abnfc(Source, _Target, Config) -> case abnfc_is_present() of false -> ?ERROR( - <<"~n===============================================~n" + "~n===============================================~n" " You need to install abnfc to compile ABNF grammars~n" " Download the latest tarball release from github~n" " https://github.com/nygge/abnfc~n" " and install it into your erlang library dir~n" - "===============================================~n~n">>, []), + "===============================================~n~n", []), ?FAIL; true -> AbnfcOpts = abnfc_opts(Config), |