From a13b9e1ec9849a3bc385fdbd42d5de63c6681bf5 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Fri, 17 Mar 2017 15:34:32 -0500 Subject: [PATCH] Specify the escript executable for hooks Windows appears to not enjoy relative path names for exectuables so hopefully this fixes things there. Fixes #83 --- rebar.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rebar.config b/rebar.config index 33b8186..09df419 100644 --- a/rebar.config +++ b/rebar.config @@ -36,5 +36,5 @@ verbose ]}. -{pre_hooks, [{"", compile, "./enc compile"}]}. -{post_hooks, [{"", clean, "./enc clean"}]}. +{pre_hooks, [{"", compile, "escript enc compile"}]}. +{post_hooks, [{"", clean, "escript enc clean"}]}.