Skip to content

Commit

Permalink
Merge pull request #9 from choptastic/windows-post-hooks
Browse files Browse the repository at this point in the history
Modify rebar.config for windows support
  • Loading branch information
yrashk committed Apr 30, 2012
2 parents 2d3ef9b + 63673ff commit 7ef7dcd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion rebar.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
%% vim: ts=2 sw=2 et ft=erlang
{deps,
[
{proper, ".*", {git, "https://github.com/manopapad/proper.git", {branch, "master"}}},
{proper_stdlib, ".*", {git, "https://github.com/spawngrid/proper_stdlib.git", {branch, "master"}}}
]}.
{lib_dirs, ["deps"]}.
{post_hooks, [{compile, "./post_compile.escript"}]}.
{post_hooks,
[
{"(linux|bsd|darwin|solaris)", compile, "./post_compile.escript"},
{"win", compile, "escript.exe post_compile.escript"}
]}.

0 comments on commit 7ef7dcd

Please sign in to comment.