Commit ba4dd890 authored by nimrod's avatar nimrod
Browse files

Fix mktemp on OpenBSD.

parent 717b856c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ sign_key () {
        echo "Can't find key to sign."
        exit 1
    fi
    csr="$(mktemp -t ssl-ca)"
    csr="$(mktemp -t ssl-ca-XXXXXXXXX)"
    export domain="$1.$(basename $PWD)"
    openssl req \
        -key keys/$1 \