Skip to content

Commit 41f6f53

Browse files
committed
No verbose
1 parent 1c2e9ca commit 41f6f53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ switch ($Command.ToLower())
146146
"fetch"
147147
{
148148
Write-Host "corral fetch"
149-
$output = (corral fetch --verbose)
149+
$output = (corral fetch)
150150
$output | ForEach-Object { Write-Host $_ }
151151
if ($LastExitCode -ne 0) { throw "Error" }
152152
break
@@ -175,7 +175,7 @@ switch ($Command.ToLower())
175175
{
176176
$testFile = (BuildTest)[-1]
177177
Write-Host "$testFile --sequential"
178-
& "$testFile" --sequential --verbose
178+
& "$testFile" --sequential
179179
if ($LastExitCode -ne 0) { throw "Error" }
180180
break
181181
}

0 commit comments

Comments
 (0)