Changeset 37770 for other-projects


Ignore:
Timestamp:
2023-06-15T20:05:13+12:00 (12 months ago)
Author:
anupama
Message:

Some modifications to the snapshots envi task (lib.pl and task.pl) that were made when the uploading Mac Monterey's rk3 caveat and rk3 to www-internal finally worked. This is one of several related commits

Location:
other-projects/nightly-tasks/snapshot/trunk
Files:
2 edited

Legend:

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

    r34519 r37770  
    218218    }
    219219
     220    # We use the upload-files-to-www-internal.sh script on linux systems now
     221    # The following is still left in as it appears to work for the mac
     222   
    220223    #my $out = `set`;
    221224    #print "out = $out\n";
  • other-projects/nightly-tasks/snapshot/trunk/task.pl

    r34940 r37770  
    4646        # see https://en.wikipedia.org/wiki/MacOS_Mojave
    4747        $osversion = "-Mojave";
     48    } elsif($osversion =~ m@^19@i) {
     49        $osversion = "-Catalina";
     50    } elsif($osversion =~ m@^20@i) {
     51            $osversion = "-BigSur";
     52    } elsif($osversion =~ m@^21@i) {
     53            $osversion = "-Monterey";
    4854    }
    4955}
Note: See TracChangeset for help on using the changeset viewer.