blob: e438b8c9f677bd1762da164a57c2e0acddc202e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ae,v 1.1 2011/03/01 17:57:16 minskim Exp $
The "test" command, as well as the "[" command, are not required to know
the "==" operator.
--- test/indent/shell.sh.orig 2011-02-24 08:45:25.000000000 +0000
+++ test/indent/shell.sh
@@ -70,7 +70,7 @@ help2
EOF2
}
bar () {
- if [ $# == 0 ]; then
+ if [ $# = 0 ]; then
while
f # KNOWN INDENT BUG
do
|