Include the URL that wget failed to fetch in the error message. r=bear

git-svn-id: svn://10.0.0.236/trunk@262363 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jhopkins%mozillamessaging.com
2011-06-03 22:26:04 +00:00
parent 805a6617ca
commit e18478fa73

View File

@@ -592,15 +592,15 @@ sub GetBuildIDFromFTP {
my ($bh, $buildIDTempFile) = tempfile(UNLINK => 1);
$bh->close();
my $info_url = 'http://' . $stagingServer . '/' . $releaseDir . '/' . $os . '_info.txt';
my $rv = RunShellCommand(
command => 'wget',
args => ['-O', $buildIDTempFile,
'http://' . $stagingServer . '/' . $releaseDir . '/' .
$os . '_info.txt']
$info_url]
);
if ($rv->{'timedOut'} || $rv->{'dumpedCore'} || ($rv->{'exitValue'} != 0)) {
die('wget of ' . $os . '_info.txt failed.');
die("wget of $info_url failed.");
}
my $buildID;