summaryrefslogtreecommitdiff
path: root/src/rebar_lfe_compiler.erl
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2011-01-28 16:08:27 +0100
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2011-02-06 17:41:04 +0100
commit63de05d914f3c2bef6dcfc6cf966400d93c9c80d (patch)
treef22a8c1b4409f2afb3de5138aa57a88f3a4c50b9 /src/rebar_lfe_compiler.erl
parent7710ab0d9f5be0833179d08d6eeb5da53ac1ed36 (diff)
Clean up code
Diffstat (limited to 'src/rebar_lfe_compiler.erl')
-rw-r--r--src/rebar_lfe_compiler.erl13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/rebar_lfe_compiler.erl b/src/rebar_lfe_compiler.erl
index d5b6e76..b100e3d 100644
--- a/src/rebar_lfe_compiler.erl
+++ b/src/rebar_lfe_compiler.erl
@@ -49,12 +49,13 @@ compile(Config, _AppFile) ->
compile_lfe(Source, _Target, Config) ->
case code:which(lfe_comp) of
non_existing ->
- ?CONSOLE("~n===============================================~n" ++
- " You need to install LFE to compile LFE source~n" ++
- "Download the latest tarball release from github~n" ++
- " http://github.com/rvirding/lfe/downloads~n" ++
- " and install it into your erlang library dir~n" ++
- "===============================================~n~n", []),
+ ?CONSOLE(
+ <<"~n===============================================~n"
+ " You need to install LFE to compile LFE source files~n"
+ "Download the latest tarball release from github~n"
+ " https://github.com/rvirding/lfe/downloads~n"
+ " and install it into your erlang library dir~n"
+ "===============================================~n~n">>, []),
?FAIL;
_ ->
Opts = [{i, "include"}, {outdir, "ebin"}, report, return] ++