Merge remote-tracking branch 'origin/pr/956'

This commit is contained in:
Julian Ospald 2023-12-26 21:41:40 +08:00
commit df192ee18e
No known key found for this signature in database
GPG Key ID: 4275CDA6A29BED43
1 changed files with 3 additions and 1 deletions

View File

@ -476,7 +476,9 @@ if (!(Test-Path -Path ('{0}' -f $MsysDir))) {
Print-Msg -msg 'Extracting Msys2 archive...'
$null = & "$archivePath" '-y' ('-o{0}' -f $GhcupDir) # Extract
Remove-Item -Path "$archivePath"
# We ignore errors because we don't want the installation script to fail just because a temporary file can't be removed.
# Relevant issue: https://github.com/haskell/ghcup-hs/issues/952
Remove-Item -Path "$archivePath" -ErrorAction Continue
Print-Msg -msg 'Processing MSYS2 bash for first time use...'
Exec "$Bash" '-lc' 'exit'