diff options
author | jhb <jhb@FreeBSD.org> | 2013-11-13 16:50:19 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2013-11-13 16:50:19 +0000 |
commit | 8d8d56863a12e92b35a91a79b7ec491e677b257e (patch) | |
tree | 7b10003c73e749a51bf1e53c5a32e930c1b45e1d /usr.sbin/etcupdate/etcupdate.sh | |
parent | 1b08920425975db25d17c1287ebcaf714066c725 (diff) | |
download | FreeBSD-src-8d8d56863a12e92b35a91a79b7ec491e677b257e.zip FreeBSD-src-8d8d56863a12e92b35a91a79b7ec491e677b257e.tar.gz |
Escape a newline added in the previous commit when verifying the flags
passed to the build, diff, or status commands.
Diffstat (limited to 'usr.sbin/etcupdate/etcupdate.sh')
-rwxr-xr-x | usr.sbin/etcupdate/etcupdate.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/etcupdate/etcupdate.sh b/usr.sbin/etcupdate/etcupdate.sh index 96e507e..b1605fa 100755 --- a/usr.sbin/etcupdate/etcupdate.sh +++ b/usr.sbin/etcupdate/etcupdate.sh @@ -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 |