From 5a810abe35c2b3cb157ed84729ce16ce2b441084 Mon Sep 17 00:00:00 2001 From: Ondrej Moris Date: Tue, 1 Oct 2024 16:29:21 +0200 Subject: [PATCH] tests: get rid of unnecesary redirection Signed-off-by: Ondrej Moris --- tests/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/setup.sh b/tests/setup.sh index 054f9302..cac39030 100755 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -106,7 +106,7 @@ pkcs11-tool "${P11DEFARGS[@]}" --write-object "${CACRT}" --type=cert \ SERIAL=2 # convert the DER cert to PEM -openssl x509 -inform DER -in "$CACRT" -outform PEM > "$CACRT_PEM" +openssl x509 -inform DER -in "$CACRT" -outform PEM -out "$CACRT_PEM" # the organization identification is not in the CA echo 'organization = "PKCS11 Provider"' >> "${TMPPDIR}/cert.cfg"