Changeset 26958 for gs2-extensions


Ignore:
Timestamp:
2013-02-26T11:29:53+13:00 (11 years ago)
Author:
jmt12
Message:

Using the util library instead of built-in perl file tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/parallel-building/trunk/src/perllib/doc.pm

    r24626 r26958  
    8989    $self->{'terse_source_path'} = $source_filename;
    9090
    91     if (-e $source_filename) {
     91        # Use the Util library methods as they are aware of more special cases
     92        # such as HDFS [jmt12]
     93    if (&util::file_exists($source_filename)) {
    9294        # See if we can do better for Windows with a filename
    9395        if ($ENV{'GSDLOS'} =~ /^windows$/i) {
Note: See TracChangeset for help on using the changeset viewer.