$NetBSD: patch-ab,v 1.3 2006/10/18 08:24:55 markd Exp $ --- scripts/svnaddcurrentdir.orig 2006-10-18 21:16:55.000000000 +1300 +++ scripts/svnaddcurrentdir @@ -17,7 +17,7 @@ ask_for_adding() { echo read -p "Add file $file to SVN ? (y/n) " answer rest #if [ "$answer" != "y" ]; then echo $file; fi -if [ "$answer" == "y" ]; then svn add $file; fi +if [ "$answer" = "y" ]; then svn add $file; fi }