2013-09-26 17:14:40 +02:00

14 lines
404 B
Plaintext

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