Update of /cvsroot/leaf/CVSROOT
In directory usw-pr-cvs1:/tmp/cvs-serv13152

Modified Files:
        enforce_naming 
Log Message:
restored original script to correct error I'll try to correct the problem tomorrow.

Index: enforce_naming
===================================================================
RCS file: /cvsroot/leaf/CVSROOT/enforce_naming,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** enforce_naming      17 Jul 2002 00:05:51 -0000      1.2
--- enforce_naming      17 Jul 2002 02:44:55 -0000      1.3
***************
*** 31,34 ****
--- 31,35 ----
  # 1. Verify that we do not create a file named CVS or cvs
  # 2. Verify that we do not create a file with the same name as a directory
+ # 3. Verify that all filenames, except Makefile, are lowercase
  # 4. Verify that all Makefiles are mixed case, properly
  
***************
*** 45,48 ****
--- 46,56 ----
                print "Creation of files named CVS or cvs is prohibited. ";
                print "($directory/$_)\n";
+               $exit_val = 1;
+       }
+ 
+       # Verify that all files are lowercase, except Makefiles
+       if ((substr($_, 0, 8) ne "Makefile") and (lc($_) ne $_)) {
+               print "All filenames must be completely lowercase except ";
+               print "Makefiles. ($directory/$_)\n";
                $exit_val = 1;
        }




-------------------------------------------------------
This sf.net email is sponsored by: Jabber - The world's fastest growing 
real-time communications platform! Don't just IM. Build it in! 
http://www.jabber.com/osdn/xim
_______________________________________________
Leaf-cvs-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-cvs-commits

Reply via email to