diff options
author | Joris | 2019-09-10 09:33:25 +0200 |
---|---|---|
committer | Joris | 2019-09-10 09:33:25 +0200 |
commit | 650a23ed763d8627af14ed154fdb9097a80875c5 (patch) | |
tree | cb9804f2995e5a2e5d61974cd35976928fa43ebd /Makefile | |
parent | 69989fff0c5d18c069120081eb5cfcc6a9bf8c29 (diff) |
Override sendmail path
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -20,7 +20,10 @@ watch: build @nodemon --watch src --delay 0.2 -e hs,conf --exec 'clear && make build-and-launch' build-and-launch: - @(pkill ad-listener || true) && (stack build && stack exec ad-listener || true) + @(pkill ad-listener || true) && (stack build && make run || true) + +run: + @stack exec ad-listener build: @stack build |