Help for this page

Select Code to Download


  1. or download this
    sub _can_write {
        my $path = shift;
    ...
        the installation may fail due to insufficient permissions.
    .
        # ...
    
  2. or download this
    sub _can_write {
        my $path = shift;
    ...
        return 1 if -w $path;
        
        # ...