mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 10:49:42 +01:00
13 lines
310 B
Bash
Executable file
13 lines
310 B
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
hsTmpDir=$1
|
|
|
|
stack ghc -- \
|
|
--make \
|
|
-threaded \
|
|
-odir $hsTmpDir \
|
|
-hidir $hsTmpDir \
|
|
-o $hsTmpDir/simple-client \
|
|
$hsTmpDir/Simple.hs \
|
|
tests/TestClient.hs \
|
|
> /dev/null
|