Try adding failure case message to makefile test

This commit is contained in:
John David Pressman 2019-06-08 21:13:59 -07:00
parent c30244a4e4
commit 77b743f0e1

View File

@ -23,4 +23,6 @@ build: build-deps
.ONESHELL:
test: build
eval $(opam env)
dune build @ligo-test
if [ ! dune build @ligo-test ]
then echo "If you get a error message that dune can't be found/isn't in your path, run 'eval $(opam env)' and this command will work.";
fi