Skip to content

Commit 07de085

Browse files
bjornforvathpela
authored andcommittedJul 24, 2020
Use portable shebangs: /bin/bash -> /usr/bin/env bash
Upstream-commit-id: 6a73ca8
1 parent 44b211b commit 07de085

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎Cryptlib/update.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
DIR=$1
44
OPENSSL_VERSION="1.0.2k"

‎make-certs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
#!/bin/bash -e
1+
#!/usr/bin/env bash
22
#
33
# Generate a root CA cert for signing, and then a subject cert.
44
# Usage: make-certs.sh hostname [user[@domain]] [more ...]
55
# For testing only, probably still has some bugs in it.
66
#
77

8+
set -e
9+
810
DOMAIN=xn--u4h.net
911
DAYS=365
1012
KEYTYPE=RSA

0 commit comments

Comments
 (0)
Please sign in to comment.