File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7171 $installer = Get-FileFromUrlOrCache - Url $installerUrl - CachedFileName ' composer-installer.php'
7272 }
7373 $tempPhar = [System.IO.Path ]::GetTempFileName();
74- $args = @ ()
75- $args += $installer
76- $args += ' --install-dir=' + (Split-Path - Path $tempPhar - Parent)
77- $args += ' --filename=' + (Split-Path - Path $tempPhar - Leaf)
78- $args += ' 2>&1'
74+ $arguments = @ ()
75+ $arguments += $installer
76+ $arguments += ' --install-dir=' + (Split-Path - Path $tempPhar - Parent)
77+ $arguments += ' --filename=' + (Split-Path - Path $tempPhar - Leaf)
78+ $arguments += ' 2>&1'
7979 Write-Verbose " Launching Composer installer"
80- $installerResult = & $phpVersion.ExecutablePath $args
80+ $installerResult = & $phpVersion.ExecutablePath $arguments
8181 if ($LASTEXITCODE -ne 0 ) {
8282 throw $installerResult
8383 }
You can’t perform that action at this time.
0 commit comments