regress: use the new gg -q to reduce the blabbering

This commit is contained in:
Omar Polo 2024-05-29 08:09:25 +00:00
parent 2f4926259f
commit 610a4666cd

View File

@ -113,13 +113,13 @@ setup_simple_test() {
# usage: get <path> # usage: get <path>
# return the body of the request on stdout # return the body of the request on stdout
get() { get() {
$gg -T10 $ggflags "gemini://$gghost:10965/$1" || true $gg -q -T10 $ggflags "gemini://$gghost:10965/$1" || true
} }
# usage: head <path> # usage: head <path>
# return the meta response line on stdout # return the meta response line on stdout
head() { head() {
$gg -T10 -d header $ggflags "gemini://$gghost:10965/$1" || true $gg -q -T10 -d header $ggflags "gemini://$gghost:10965/$1" || true
} }
# usage: fetch <path> # usage: fetch <path>