We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c2e9ca commit 41f6f53Copy full SHA for 41f6f53
make.ps1
@@ -146,7 +146,7 @@ switch ($Command.ToLower())
146
"fetch"
147
{
148
Write-Host "corral fetch"
149
- $output = (corral fetch --verbose)
+ $output = (corral fetch)
150
$output | ForEach-Object { Write-Host $_ }
151
if ($LastExitCode -ne 0) { throw "Error" }
152
break
@@ -175,7 +175,7 @@ switch ($Command.ToLower())
175
176
$testFile = (BuildTest)[-1]
177
Write-Host "$testFile --sequential"
178
- & "$testFile" --sequential --verbose
+ & "$testFile" --sequential
179
180
181
}
0 commit comments