rhelmer%mozilla.com cf5be8be88 implement release steps b=356185 r=preed
git-svn-id: svn://10.0.0.236/trunk@216496 18797224-902f-48f8-a5cc-f745e15eee43
2006-12-05 19:12:59 +00:00

32 lines
583 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 sign',
'logFile' => $logDir . '/sign.log',
);
}
sub Verify {
my $this = shift;
my $logDir = $config->Get('var' => 'logDir');
$this->Shell(
'cmd' => 'echo Verify sign',
'logFile' => $logDir . '/verify-sign.log',
);
}
1;