From 03800d3b7414c7d6faba2c54f6dd3211f40ed44e Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Sun, 6 Jun 2021 11:59:05 +0200 Subject: [PATCH] Hardcode C:\ in windows bootstrap script --- bootstrap-haskell.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-haskell.ps1 b/bootstrap-haskell.ps1 index 4d269ae..d2967e1 100644 --- a/bootstrap-haskell.ps1 +++ b/bootstrap-haskell.ps1 @@ -93,7 +93,7 @@ function Get-FileWCSynchronous{ $ErrorActionPreference = 'Stop' -$GhcupDir = "$env:HOMEDRIVE\ghcup" +$GhcupDir = "C:\ghcup" $MsysDir = ('{0}\msys64' -f $GhcupDir) $Bash = ('{0}\usr\bin\bash' -f $MsysDir)