search for buildid as printed by post-mozilla-rel.pl::main() not the update-specific code b=415180 r=nthomas

This commit is contained in:
rhelmer@mozilla.com 2008-03-12 16:03:55 -07:00
parent 0f32c99c1f
commit 36bee74a24

View File

@ -22,7 +22,7 @@ sub new {
# GetBuildID - attempts to find build ID in a tinderbox log file
#
# Searches for a string of the form:
# Got Build ID: 2007030311
# buildid: 2007030311
# Only the buildID, '2007030311', is to be returned.
#
##
@ -34,7 +34,7 @@ sub GetBuildID {
my $log = $this->GetLogFileName();
my $buildID = undef;
my $searchString = "Got build ID ";
my $searchString = "buildid: ";
open (FILE, "< $log") or die("Cannot open file $log: $!");
while (<FILE>) {