diff options
author | 2015-01-17 14:36:58 +0000 | |
---|---|---|
committer | 2015-01-17 14:36:58 +0000 | |
commit | fbd846958a9a19f0724aee6d40fe444af5b645fc (patch) | |
tree | cecda6f2072decd793175f70a97d870db07df9c0 | |
parent | Remove a pasto introduced in the last commit, spotted by schwarze@ (diff) | |
download | wireguard-openbsd-fbd846958a9a19f0724aee6d40fe444af5b645fc.tar.xz wireguard-openbsd-fbd846958a9a19f0724aee6d40fe444af5b645fc.zip |
Remove unnecessary double-quotes inside [[]].
OK krw@
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 2df93d08804..6d2beeb7c5e 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.810 2015/01/17 10:09:06 rpe Exp $ +# $OpenBSD: install.sub,v 1.811 2015/01/17 14:36:58 rpe Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback # All rights reserved. @@ -1983,7 +1983,7 @@ using the 'mail' command. __EOT md_congrats - [[ "$MODE" == upgrade ]] && \ + [[ $MODE == upgrade ]] && \ echo "After rebooting, run sysmerge(8) to update your system configuration." $AUTO && >/ai.done } |