Clean up after install

Adam Dinwoodie
2016-05-13 15:32:34 +01:00
parent 5636bbf4b4
commit 1402a4ca4b

@@ -4,12 +4,14 @@
sudo ln -s /usr/lib64/libgmp.so.3 /usr/lib64/libgmp.so.10
# Get Haskell and build it
#### From https://www.haskell.org/platform/linux.html#linux-generic
pushd "$(mktemp -d)"
#### Based on https://www.haskell.org/platform/linux.html#linux-generic
dir="$(mktemp -d)"
pushd "$dir"
wget https://haskell.org/platform/download/7.10.2/haskell-platform-7.10.2-a-unknown-linux-deb7.tar.gz
tar xvzf haskell-platform-7.10.2-a-unknown-linux-deb7.tar.gz
./install-haskell-platform.sh
popd
rm -r "$dir"
# Install shellcheck
cabal install shellcheck