mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-11 14:58:29 +01:00
11 lines
152 B
Bash
Executable File
11 lines
152 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -exuo pipefail
|
|
|
|
export LANG=C.UTF-8
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Cleanup
|
|
apt-get clean
|
|
rm -rf /var/lib/apt/lists/*
|