mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
14 lines
404 B
Plaintext
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
|
|
}
|
|
|
|
|