Dispose of standard output too - postreich - Unnamed repository; edit this file 'description' to name the repository. DIR Log DIR Files DIR Refs DIR README --- DIR commit f54a9529b65ca142d6336a0e349889f2d822b8c8 DIR parent 411809a9080d2e5fe2f646a45bf0f579ab4afdb3 HTML Author: Scarlett McAllister <no+reply@roygbyte.com> Date: Wed, 24 Jan 2024 21:11:05 -0400 Dispose of standard output too Diffstat: M geomyidae/postreich/api/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/geomyidae/postreich/api/common b/geomyidae/postreich/api/common @@ -55,7 +55,7 @@ decode_and_verify_pubkey() { return 1 fi printf "%s" "$decoded_payload" \ - | openssl pkey -pubcheck -pubin > /dev/null + | openssl pkey -pubcheck -pubin 2> /dev/null # test result of `openssl` invocation. if [ ! $? ]; then printf "Key is not valid.\n"