bug 409232: pass in product name to verify-locales.pl - Bootstrap changes to call verify-locales.pl w/ new argument. r=nrthomas, patch=me
--- a/tools/release/Bootstrap/Step/Stage.pm
+++ b/tools/release/Bootstrap/Step/Stage.pm
@@ -453,17 +453,18 @@ sub Verify {
dir => catfile($stageDir, 'batch1'),
);
# Verify locales
my $verifyLocalesLogFile = catfile($logDir, 'stage_verify_l10n.log');
$this->Shell(
cmd => catfile($stageHome, 'bin', 'verify-locales.pl'),
cmdArgs => ['-m', catfile($stageDir, 'batch1', 'config',
- 'shipped-locales'), '-l', $linuxExtension],
+ 'shipped-locales'), '-l', $linuxExtension,
+ '-p', $product],
logFile => $verifyLocalesLogFile,
dir => catfile($stageDir, 'batch1', 'stage-signed'),
);
$this->CheckLog(
log => $verifyLocalesLogFile,
notAllowed => '^FAIL: '
);