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
1 changed files with 2 additions and 2 deletions

View File

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