From 7738e4c8d1e4c7fa1819def5f40855f4329da4e3 Mon Sep 17 00:00:00 2001 From: "nrthomas%gmail.com" Date: Tue, 18 Dec 2007 17:47:03 +0000 Subject: [PATCH] Bug 408811, fix perl warning on some unshipped files, r=rhelmer --- tools/release/Bootstrap/Step/Stage.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/release/Bootstrap/Step/Stage.pm b/tools/release/Bootstrap/Step/Stage.pm index 22372fa1db8..380e262c3e6 100644 --- a/tools/release/Bootstrap/Step/Stage.pm +++ b/tools/release/Bootstrap/Step/Stage.pm @@ -545,8 +545,9 @@ sub TrimCallback { # Don't ship xforms in the release area if (($dirent =~ /xforms\.xpi/) || # ZIP files are not shipped; neither are en-US lang packs - ($dirent =~ /\.zip$/) || - ($dirent =~ /en-US\.xpi$/)) { + ($dirent =~ /\.zip$/) || ($dirent =~ /en-US\.xpi$/) || + # nor the BuildID files, nor the 2.0.0.x signing log + ($dirent =~ /_info.txt$/) || ($dirent =~ /win32_signing_rc\d+\.log/) ) { unlink($dirent) || die "Could not unlink $dirent: $!"; $this->Log(msg => "Unlinked $dirent"); return;