Skip to content

Commit

Permalink
Fixed typo - missed a bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-richardson committed Apr 17, 2020
1 parent f433d6e commit ddf9c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/powershell-helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function Invoke-VagrantWithRetries {
do {
Write-Output (@("Running Vagrant with arguments '", ($args -join " "), "'") -join "")
Invoke-Expression "vagrant $args" -ErrorVariable stdErr 2>&1 | Tee-Object -FilePath vagrant.log
if (-not ([string]::IsNullOrEmpty($stdErr)) {
if (-not ([string]::IsNullOrEmpty($stdErr))) {
Write-Warning "StdErr:"
Write-Warning $stdErr
}
Expand Down

0 comments on commit ddf9c1f

Please sign in to comment.