rhelmer%mozilla.com a7a8f31906 cleanup and consistency r=preed b=369004
git-svn-id: svn://10.0.0.236/trunk@219672 18797224-902f-48f8-a5cc-f745e15eee43
2007-02-07 22:14:24 +00:00

36 lines
678 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(var => '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(var => 'logDir');
$this->Shell(
cmd => 'echo',
cmdArgs => ['Verify sign'],
logFile => catfile($logDir, 'sign_verify.log'),
);
}
1;