Log Message:
-----------
backport (sh002i): ignore .svn directories in problem libraries
(%ignoredir)
Tags:
----
rel-2-4-dev
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.77.2.1
retrieving revision 1.77.2.2
diff -Llib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm -Llib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm -u -r1.77.2.1 -r1.77.2.2
--- 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 {
|