We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 295054e commit acd9fd1Copy full SHA for acd9fd1
bin/install
@@ -1,16 +1,8 @@
1
#!/usr/bin/env bash
2
3
-ghc_version () {
4
- local version=$1
5
- local url="https://downloads.haskell.org/~ghc/${version}/"
6
- curl -s "$url" | grep -oE 'ghc-[^-]+' | head -n 1 | sed -e 's/ghc-//g'
7
-}
8
-
9
ghc_install() {
10
local install_type=$1
11
- # local release=$2
12
local version=$2
13
- # local version=$(ghc_version $release)
14
local install_path=$3
15
16
local tmp_dir=$(mktemp -d -t haskell_XXXXXXX)
0 commit comments