Changeset 635


Ignore:
Timestamp:
11/14/08 07:21:32 (4 years ago)
Author:
SvenDowideit
Message:

Item109: i dislike unless, and when it doesn't actually work as expected, it shows why

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Release04x02/pseudo-install.pl

    r3 r635  
    213213    foreach my $c ( @components ) { 
    214214        if( -l "$path$c" ) { 
    215             return unless _checkLink($moduleDir, $path, $c) || $force; 
     215            if (!$force) { 
     216                return if (!_checkLink($moduleDir, $path, $c)); 
     217            } 
    216218            unlink "$path$c"; 
    217219            print "Unlinked $path$c\n"; 
Note: See TracChangeset for help on using the changeset viewer.