gecko/tools/release/Bootstrap/Step/Sign.pm
2007-08-10 16:30:01 -07:00

36 lines
684 B
Perl

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