mkdocs/build.sh
2016-03-30 09:52:51 +02:00

7 lines
181 B
Bash
Executable file

#!/usr/bin/env zsh
if hash stack 2>/dev/null; then
stack ghc -- -odir build -hidir build compile.hs -O2
else
print -- "Please install 'stack' (http://haskellstack.org)"
fi