Skip to content

Commit f0ff14b

Browse files
committed
No verbose
1 parent 1c2e9ca commit f0ff14b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

cmd/http_handlers.pony

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use "collections"
2-
use "crypto"
2+
use "ssl/crypto"
33
use "files"
44
use "http"
55
use "json"

corral.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"deps": [
33
{
4-
"locator": "github.com/ponylang/crypto.git",
5-
"version": "100.0.0"
4+
"locator": "github.com/ponylang/ssl.git",
5+
"version": "1.0.0"
66
},
77
{
88
"locator": "github.com/ponylang/appdirs.git",
99
"version": "0.1.5"
1010
},
1111
{
1212
"locator": "github.com/ponylang/http.git",
13-
"version": "0.6.3"
13+
"version": "0.6.4"
1414
},
1515
{
1616
"locator": "github.com/ponylang/json.git",

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)