gRPC-haskell/tests/simple-server.sh

14 lines
310 B
Bash
Raw Normal View History

#!/bin/bash -eu
hsTmpDir=$1
ghc \
--make \
-threaded \
-odir $hsTmpDir \
-hidir $hsTmpDir \
-o $hsTmpDir/simple-server \
$hsTmpDir/Simple.hs \
tests/TestServer.hs \
> /dev/null