From 4de2214fb2c483f9c639f673f916183260b4ccc0 Mon Sep 17 00:00:00 2001 From: Glen Barber Date: Wed, 23 Aug 2017 17:47:57 +0000 Subject: [PATCH] MFC r322544: Always expand the full path to the configuration file specified with the '-c' flag. This fixes an issue where the configuration file would not properly be located intermittently. Approved by: re (kib, marius) Sponsored by: The FreeBSD Foundation --- release/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/release.sh b/release/release.sh index 6dc4a28d97b5..0394036b82e2 100755 --- a/release/release.sh +++ b/release/release.sh @@ -384,7 +384,7 @@ main() { while getopts c: opt; do case ${opt} in c) - RELEASECONF="${OPTARG}" + RELEASECONF="$(realpath ${OPTARG})" ;; \?) usage