Skip to content

Commit

Permalink
Install ghcup on windows (#4044)
Browse files Browse the repository at this point in the history
  • Loading branch information
hasufell authored Sep 10, 2021
1 parent 06eef92 commit a9ac553
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions images/win/scripts/Installers/Install-Haskell.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ Write-Host 'Installing cabal...'
Choco-Install -PackageName cabal

Invoke-PesterTests -TestFile 'Haskell'

# install minimal ghcup, utilizing pre-installed msys2 at C:\msys64
$bootstrapHaskell = Invoke-WebRequest https://www.haskell.org/ghcup/sh/bootstrap-haskell.ps1 -UseBasicParsing
Invoke-Command -ScriptBlock ([ScriptBlock]::Create($bootstrapHaskell)) -ArgumentList $false, $true, $true, $false, $false, $false, $false, C:\, "", C:\msys64, C:\cabal

0 comments on commit a9ac553

Please sign in to comment.