mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 13:32:45 +00:00
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:
parent
d8248e4431
commit
4de2214fb2
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/stable/10/; revision=322818
@ -384,7 +384,7 @@ main() {
|
||||
while getopts c: opt; do
|
||||
case ${opt} in
|
||||
c)
|
||||
RELEASECONF="${OPTARG}"
|
||||
RELEASECONF="$(realpath ${OPTARG})"
|
||||
;;
|
||||
\?)
|
||||
usage
|
||||
|
Loading…
Reference in New Issue
Block a user