Ignore:
Timestamp:
2015-12-16T16:15:39+13:00 (8 years ago)
Author:
jmt12
Message:

Extending manifest v2 support to allow for directories to be listed in manifest. Matched with changes in Directory plugin to allow paths into systems like HDFS to be listed in manifest.cd

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/parallel-building/trunk/src/bin/script/generate_gantt.pl

    r29663 r30354  
    44use strict;
    55use warnings;
     6
     7BEGIN
     8{
     9    if ( !defined $ENV{'GEXTPARALLELBUILDING_INSTALLED'}) {
     10    die "GEXTPARALLELBUILDING_INSTALLED not set\n";
     11    }
     12    # Installed CPAN packages for GEXT*INSTALL
     13    my $perl_version = `perl-version.pl`;
     14    my $perl_path = sprintf("%s/lib/perl/%s", $ENV{'GEXTPARALLELBUILDING_INSTALLED'}, $perl_version);
     15    unshift (@INC, $perl_path);
     16}
    617
    718# Modules
Note: See TracChangeset for help on using the changeset viewer.