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
This commit is contained in:
Glen Barber 2017-08-23 17:47:57 +00:00
parent d8248e4431
commit 4de2214fb2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/10/; revision=322818

View File

@ -384,7 +384,7 @@ main() {
while getopts c: opt; do
case ${opt} in
c)
RELEASECONF="${OPTARG}"
RELEASECONF="$(realpath ${OPTARG})"
;;
\?)
usage