Skip to content

Commit 9835967

Browse files
committed
Use absolute paths of $OWNER_CERT_FILE and $SECRETARY_CERT_FILE
1 parent e1d2faf commit 9835967

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

http-tests/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ if [ "$#" -ne 4 ]; then
77
exit 1
88
fi
99

10-
export OWNER_CERT_FILE="$1"
10+
export OWNER_CERT_FILE="$(realpath "$1")"
1111
export OWNER_CERT_PWD="$2"
12-
export SECRETARY_CERT_FILE="$3"
12+
export SECRETARY_CERT_FILE="$(realpath "$3")"
1313
export SECRETARY_CERT_PWD="$4"
1414

1515
export STATUS_OK=200

0 commit comments

Comments
 (0)