Subversion Repositories DevTools

Rev

Rev 5486 | Rev 5710 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5486 Rev 5568
Line 924... Line 924...
924
        #
924
        #
925
        if ( -e $path )
925
        if ( -e $path )
926
        {
926
        {
927
            Verbose3 ("RmDirTree: Directory still exists. Change permissions: $path");
927
            Verbose3 ("RmDirTree: Directory still exists. Change permissions: $path");
928
            system ("$ENV{GBE_BIN}/chmod", '-R', 'u+wrx', $path);
928
            system ("$ENV{GBE_BIN}/chmod", '-R', 'u+wrx', $path);
929
            rmtree( $path );
929
            eval { rmtree( $path ); };
930
        }
930
        }
931
    }
931
    }
932
    return ( -e $path );
932
    return ( -e $path );
933
}
933
}
934
 
934