mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-12 07:18:31 +01:00
14 lines
246 B
Bash
Executable File
14 lines
246 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This file contains setup needed for the build server to function at all.
|
|
|
|
set -exuo pipefail
|
|
|
|
mkdir -p /home/stackage
|
|
|
|
export LANG=C.UTF-8
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
apt-get update
|
|
apt-get install -y curl unzip
|