|
From: Chris W. <la...@us...> - 2001-11-30 15:22:26
|
Update of /cvsroot/openinteract/OpenInteract/OpenInteract
In directory usw-pr-cvs1:/tmp/cvs-serv7806
Modified Files:
Startup.pm
Log Message:
added umask to mkdir() function -- optional in 5.6.1 but not in 5.5.x (thanks merlyn!)
Index: Startup.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/OpenInteract/Startup.pm,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** Startup.pm 2001/11/28 05:55:07 1.25
--- Startup.pm 2001/11/30 15:22:22 1.26
***************
*** 248,252 ****
File::Path::rmtree( $lib_dir ) if ( -d $lib_dir );
! mkdir( $lib_dir );
my $site_repos = $REPOS_CLASS->fetch( undef,
--- 248,252 ----
File::Path::rmtree( $lib_dir ) if ( -d $lib_dir );
! mkdir( $lib_dir, 0777 );
my $site_repos = $REPOS_CLASS->fetch( undef,
|