Date: Wed, 13 Nov 2013 16:50:19 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r258097 - head/usr.sbin/etcupdate Message-ID: <201311131650.rADGoJ10007816@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Wed Nov 13 16:50:19 2013 New Revision: 258097 URL: http://svnweb.freebsd.org/changeset/base/258097 Log: Escape a newline added in the previous commit when verifying the flags passed to the build, diff, or status commands. Modified: head/usr.sbin/etcupdate/etcupdate.sh Modified: head/usr.sbin/etcupdate/etcupdate.sh ============================================================================== --- head/usr.sbin/etcupdate/etcupdate.sh Wed Nov 13 16:17:05 2013 (r258096) +++ head/usr.sbin/etcupdate/etcupdate.sh Wed Nov 13 16:50:19 2013 (r258097) @@ -1698,7 +1698,7 @@ case $command in fi ;; build|diff|status) - if [ -n "$dryrun" -o -n "$rerun" -o -n "$tarball" -o + if [ -n "$dryrun" -o -n "$rerun" -o -n "$tarball" -o \ -n "$preworld" ]; then usage fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311131650.rADGoJ10007816>