svn commit: r322817 - stable/11/release

Glen Barber gjb at FreeBSD.org
Wed Aug 23 17:12:27 UTC 2017


Author: gjb
Date: Wed Aug 23 17:12:26 2017
New Revision: 322817
URL: https://svnweb.freebsd.org/changeset/base/322817

Log:
  MFC r322544:
   Always expand the full path to the configuration file specified
   with the '-c' flag.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/11/release/release.sh
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/release/release.sh
==============================================================================
--- stable/11/release/release.sh	Wed Aug 23 16:50:10 2017	(r322816)
+++ stable/11/release/release.sh	Wed Aug 23 17:12:26 2017	(r322817)
@@ -390,7 +390,7 @@ main() {
 	while getopts c: opt; do
 		case ${opt} in
 			c)
-				RELEASECONF="${OPTARG}"
+				RELEASECONF="$(realpath ${OPTARG})"
 				;;
 			\?)
 				usage


More information about the svn-src-all mailing list