Skip to content

Commit

Permalink
Merge pull request #4 from AndreasPK/master
Browse files Browse the repository at this point in the history
Adjust file name to match url path
  • Loading branch information
Mistuke authored Jun 28, 2017
2 parents 66616f5 + 8cb6084 commit 68881b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/chocolateyInstall-Template.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ execute "Ensuring /mingw folder exists" `
('test -d /mingw' + $osBitness + ' || mkdir /mingw' + $osBitness)

execute "Installing bootstrapping GHC 7.10.3 version" `
('curl --stderr - -LO https://www.haskell.org/ghc/dist/7.10.3/ghc-7.10.3-' + $ghcArch + '-unknown-mingw32-win10.tar.xz && tar -xJ -C /mingw' + $osBitness + ' --strip-components=1 -f ghc-7.10.3-' + $ghcArch + '-unknown-mingw32.tar.xz && rm -f ghc-7.10.3-' + $ghcArch + '-unknown-mingw32.tar.xz')
('curl --stderr - -LO https://www.haskell.org/ghc/dist/7.10.3/ghc-7.10.3-' + $ghcArch + '-unknown-mingw32-win10.tar.xz && tar -xJ -C /mingw' + $osBitness + ' --strip-components=1 -f ghc-7.10.3-' + $ghcArch + '-unknown-mingw32-win10.tar.xz && rm -f ghc-7.10.3-' + $ghcArch + '-unknown-mingw32-win10.tar.xz')

execute "Installing alex, happy and cabal" `
('mkdir -p /usr/local/bin && curl --stderr - -LO https://www.haskell.org/cabal/release/cabal-install-1.24.0.0/cabal-install-1.24.0.0-i386-unknown-mingw32.zip && unzip cabal-install-1.24.0.0-i386-unknown-mingw32.zip -d /usr/local/bin && rm -f cabal-install-1.24.0.0-i386-unknown-mingw32.zip && cabal update && cabal install -j --prefix=/usr/local alex happy')
Expand Down

0 comments on commit 68881b5

Please sign in to comment.