Files
Mozilla/mozilla/tools/release/Bootstrap/Step/Sign.pm
rhelmer%mozilla.com b10dcf0c62 move to new RunShellCommand, split into substeps, various fixes and features. r=preed, b=368579
git-svn-id: svn://10.0.0.236/trunk@219314 18797224-902f-48f8-a5cc-f745e15eee43
2007-02-01 03:50:47 +00:00

34 lines
645 B
Perl

#
# Sign step. Applies digital signatures to builds.
#
package Bootstrap::Step::Sign;
use Bootstrap::Step;
use Bootstrap::Config;
@ISA = ("Bootstrap::Step");
my $config = new Bootstrap::Config;
sub Execute {
my $this = shift;
my $logDir = $config->Get('var' => 'logDir');
$this->Shell(
'cmd' => 'echo',
'cmdArgs' => ['sign'],
'logFile' => catfile($logDir, 'sign.log'),
);
}
sub Verify {
my $this = shift;
my $logDir = $config->Get('var' => 'logDir');
$this->Shell(
'cmd' => 'echo',
'cmdArgs' => ['Verify sign'],
'logFile' => catfile($logDir, 'sign_verify.log'),
);
}
1;