We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f376c8d commit f208716Copy full SHA for f208716
1 file changed
scripts/ocsp-stapling_tls13multi.test
@@ -77,7 +77,8 @@ PARENTDIR="$PWD"
77
#WORKSPACE="${PARENTDIR}/workspace.pid$$"
78
#mkdir "${WORKSPACE}" || exit $?
79
80
-WORKSPACE="$(mktemp -d -p ${PARENTDIR})"
+# Use portable mktemp syntax that works on both Linux and macOS
81
+WORKSPACE="$(mktemp -d ${PARENTDIR}/wolfssl-ocsp-test.XXXXXX)"
82
83
cp -pR ${SCRIPT_DIR}/../certs "${WORKSPACE}"/ || exit $?
84
cd "$WORKSPACE" || exit $?
0 commit comments