Changeset 828


Ignore:
Timestamp:
11/20/08 13:21:11 (3 years ago)
Author:
CrawfordCurrie
Message:

Item175: correction to TWiki dir auto-creation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/pseudo-install.pl

    r827 r828  
    211211            print STDERR "ERROR $path$c is in the way\n"; 
    212212            last; 
    213         } elsif ( $c eq 'TWiki') { 
     213        } elsif ( $c eq 'TWiki' ) { 
    214214            # Special case 
    215215            $path .= "$c/"; 
    216             if (!mkdir("$path$c")) { 
    217                 print STDERR "Could not mkdir $path\n"; 
     216            print STDERR "mkdir $path\n"; 
     217            if (!mkdir(_cleanPath($path))) { 
     218                print STDERR "Could not mkdir $path: $!\n"; 
    218219                last; 
    219220            }; 
Note: See TracChangeset for help on using the changeset viewer.