svn commit: r258097 - head/usr.sbin/etcupdate
John Baldwin
jhb at FreeBSD.org
Wed Nov 13 16:50:19 UTC 2013
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
More information about the svn-src-head
mailing list