summaryrefslogtreecommitdiff
path: root/inttest/thooks/rebar.config
diff options
context:
space:
mode:
Diffstat (limited to 'inttest/thooks/rebar.config')
-rw-r--r--inttest/thooks/rebar.config7
1 files changed, 7 insertions, 0 deletions
diff --git a/inttest/thooks/rebar.config b/inttest/thooks/rebar.config
new file mode 100644
index 0000000..6514818
--- /dev/null
+++ b/inttest/thooks/rebar.config
@@ -0,0 +1,7 @@
+%% pre-scripts
+{pre_hooks, [{clean, "echo preclean >> preclean.out"},
+ {compile, "echo precompile >> precompile.out"}]}.
+
+%% post-scripts
+{post_hooks, [{clean, "echo postclean >> postclean.out"},
+ {compile, "echo postcompile >> postcompile.out"}]}.