gRPC-haskell/tests/simple-client.sh

14 lines
321 B
Bash
Executable File

#!/usr/bin/env bash
set -eu
hsTmpDir=$1
ghc \
--make \
-threaded \
-odir $hsTmpDir \
-hidir $hsTmpDir \
-o $hsTmpDir/simple-client \
$hsTmpDir/Simple.hs \
tests/TestClient.hs \
> /dev/null