File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,10 @@ Start-BitsTransfer -Source $dartSdkUrl -Destination $dartSdkZip
4949Write-Host " Unzipping Dart SDK..."
5050If (Get-Command 7z - errorAction SilentlyContinue) {
5151 # The built-in unzippers are painfully slow. Use 7-Zip, if available.
52- & 7z x $dartSdkZip - o " $cachePath " - bd | Out-Null
52+ & 7z x $dartSdkZip " -o $cachePath " - bd | Out-Null
5353} ElseIf (Get-Command 7za - errorAction SilentlyContinue) {
5454 # Use 7-Zip's standalone version 7za.exe, if available.
55- & 7za x $dartSdkZip - o " $cachePath " - bd | Out-Null
55+ & 7za x $dartSdkZip " -o $cachePath " - bd | Out-Null
5656} ElseIf (Get-Command Expand-Archive - errorAction SilentlyContinue) {
5757 # Use PowerShell's built-in unzipper, if available (requires PowerShell 5+).
5858 Expand-Archive $dartSdkZip - DestinationPath $cachePath
You can’t perform that action at this time.
0 commit comments