15 lines
259 B
Bash
15 lines
259 B
Bash
|
set -e
|
||
|
|
||
|
mkdir -p artifacts
|
||
|
|
||
|
log "Kompilerar backend..."
|
||
|
find backend -type f -and -name '*.hs' -print0 \
|
||
|
| xargs -0 ghc -o artifacts/Main \
|
||
|
-odir artifacts \
|
||
|
-hidir artifacts \
|
||
|
-tmpdir artifacts
|
||
|
|
||
|
log "Klar" "!"
|
||
|
|
||
|
set +e
|