mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
de4337e464
Note: for mac, MOZILLA_OFFICIAL is only set by default on opt builds until the new mac build scripts land.
13 lines
219 B
Perl
Executable File
13 lines
219 B
Perl
Executable File
|
|
use strict;
|
|
use mozBDate;
|
|
|
|
my $outfile = $ARGV[0];
|
|
my $build_num_file = $ARGV[1];
|
|
my $infile = "";
|
|
|
|
$infile = $ARGV[2] if ("$ARGV[2]" ne "");
|
|
|
|
&mozBDate::SubstituteBuildNumber($outfile, $build_num_file, $infile);
|
|
|