Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Use curl instead of wget to download in bin/compile
Browse files Browse the repository at this point in the history
  • Loading branch information
mbbx6spp committed May 29, 2012
1 parent 89c4eaa commit 75fb9f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/compile
Expand Up @@ -19,7 +19,7 @@ if [ -z ${BUILDPACK_GHC_BASE_URL} ]; then
else
mkdir -p ${CACHE_DIR}
pushd ${CACHE_DIR}
wget ${BUILDPACK_GHC_BASE_URL}/${GHC_VERSION}/ghc-heroku-${GHC_VERSION}.tar.bz2;
curl -O ${BUILDPACK_GHC_BASE_URL}/${GHC_VERSION}/ghc-heroku-${GHC_VERSION}.tar.bz2;
tar -jxf ghc=heroku-${GHC_VERSION}.tar.bz2;
cabal update
cabal install cabal cabal-install
Expand Down

0 comments on commit 75fb9f2

Please sign in to comment.