Changeset 38098


Ignore:
Timestamp:
2023-09-11T20:10:07+12:00 (9 months ago)
Author:
anupama
Message:

In fixing getting the imagemagick tarball for mac, I'd broken how it correctly was getting imagemagick for linux.

File:
1 edited

Legend:

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

    r38070 r38098  
    423423    # imagemagick binary
    424424    print STDERR "Getting imagemagick binary\n";
    425    
    426     $imagickzip = "";
     425
     426    my $os = $isMac ? "darwin" : "linux";
     427    $imagickzip = "imagemagick-$os";
    427428   
    428429    if($isMac) {
     
    462463        system("cd ext && tar -xvzf $imagickzip");
    463464    }
    464     }   
     465    }
    465466    return $imagickzip;
    466467}
Note: See TracChangeset for help on using the changeset viewer.