aboutsummaryrefslogtreecommitdiff
path: root/api/tests/node_local_zlatest.sh
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-12-07 03:32:51 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-12-07 03:32:51 +0200
commit9cb9fda65b96cf851f47a3fb6ec57b8d51b710cd (patch)
tree91adfd3c8dddf290e8357581bf4fb7622fa95726 /api/tests/node_local_zlatest.sh
parent61e46fdc08170e0c630ff9983b87fde6890e3caf (diff)
downloadarching-kaos-tools-9cb9fda65b96cf851f47a3fb6ec57b8d51b710cd.tar.gz
arching-kaos-tools-9cb9fda65b96cf851f47a3fb6ec57b8d51b710cd.tar.bz2
arching-kaos-tools-9cb9fda65b96cf851f47a3fb6ec57b8d51b710cd.zip
Silent curl, holy curl
Diffstat (limited to 'api/tests/node_local_zlatest.sh')
-rwxr-xr-xapi/tests/node_local_zlatest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/tests/node_local_zlatest.sh b/api/tests/node_local_zlatest.sh
index aaf2681..132107f 100755
--- a/api/tests/node_local_zlatest.sh
+++ b/api/tests/node_local_zlatest.sh
@@ -1,7 +1,7 @@
#!/bin/bash
PROGRAM="$(basename $0)"
printf '[%s]\n' "$PROGRAM"
-API_RES="$(curl http://127.0.0.1:8610/v0/zlatest 2>/dev/null | sha512sum - | awk '{ printf $1 }')"
+API_RES="$(curl -s http://127.0.0.1:8610/v0/zlatest 2>/dev/null | sha512sum - | awk '{ printf $1 }')"
CMD_RES="$(ak zchain --get-latest | sed -e 's/^/{"zlatest":"/; s/$/"}/' | sha512sum - | awk '{ printf $1 }')"
printf "TEST /zlatest\n"
printf "\t01:\tLatest is the same between API response and CLI..."