From: Mike G. v. a. <we...@ma...> - 2005-09-13 01:24:05
|
Log Message: ----------- Add clarification to error message for surePathToFile Modified Files: -------------- webwork-modperl/lib/WeBWorK: Utils.pm Revision Data ------------- Index: Utils.pm =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/lib/WeBWorK/Utils.pm,v retrieving revision 1.69 retrieving revision 1.70 diff -Llib/WeBWorK/Utils.pm -Llib/WeBWorK/Utils.pm -u -r1.69 -r1.70 --- lib/WeBWorK/Utils.pm +++ lib/WeBWorK/Utils.pm @@ -259,7 +259,7 @@ #FIXME this make directory command may not be fool proof. unless (-e $path) { mkdir($path, $perms) - or warn "Failed to create directory $path"; + or warn "Failed to create directory $path with start directory $start_directory "; } } |