2023-08-15 12:23:23 +02:00
|
|
|
#!/usr/bin/env bash
|
2023-08-09 23:05:03 +02:00
|
|
|
set -e
|
|
|
|
|
|
|
|
mkdir -p artifacts
|
|
|
|
|
|
|
|
log "Kompilerar backend..."
|
|
|
|
find backend -type f -and -name '*.hs' -print0 \
|
2023-08-15 12:23:23 +02:00
|
|
|
| xargs -t0 ghc -o artifacts/Main \
|
2023-08-09 23:05:03 +02:00
|
|
|
-odir artifacts \
|
|
|
|
-hidir artifacts \
|
|
|
|
-tmpdir artifacts
|
|
|
|
|
|
|
|
log "Klar" "!"
|
|
|
|
|
|
|
|
set +e
|