Changeset 27676


Ignore:
Timestamp:
2013-06-20T16:51:24+12:00 (11 years ago)
Author:
ak19
Message:

Envi passes an extra arg, the env_verbosity, to all tasks now. It's passed in as the first parameter. So the diffcol and snapshot tasks have to take it into account

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/nightly-tasks/snapshot/trunk/task.pl

    r27662 r27676  
    1616our $branch_path = "";
    1717our $major_version = 0;
     18
     19# if the first arg is a digit, it's the new envi verbosity param. Take it off the array
     20my $envi_verbose = shift(@ARGV) if(exists $ARGV[0] && $ARGV[0] =~ m/^\d+$/);
    1821
    1922if ( exists $ARGV[0] ) {
Note: See TracChangeset for help on using the changeset viewer.