From: Sam H. v. a. <we...@ma...> - 2007-08-24 18:15:39
|
Log Message: ----------- ignore .svn directories in problem libraries (%ignoredir) Modified Files: -------------- webwork2/lib/WeBWorK/ContentGenerator/Instructor: SetMaker.pm Revision Data ------------- Index: SetMaker.pm =================================================================== RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm,v retrieving revision 1.79 retrieving revision 1.80 diff -Llib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm -Llib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm -u -r1.79 -r1.80 --- lib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm +++ lib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm @@ -70,7 +70,7 @@ my %problib; ## filled in in global.conf my %ignoredir = ( '.' => 1, '..' => 1, 'Library' => 1, 'CVS' => 1, 'tmpEdit' => 1, - 'headers' => 1, 'macros' => 1, 'email' => 1, + 'headers' => 1, 'macros' => 1, 'email' => 1, '.svn' => 1, ); sub prepare_activity_entry { |