rhelmer%mozilla.com 7f9943721c step changes for bootstrap b=356185 r=preed
git-svn-id: svn://10.0.0.236/trunk@215065 18797224-902f-48f8-a5cc-f745e15eee43
2006-11-09 23:25:07 +00:00

19 lines
304 B
Perl

#
# Sign step. Applies digital signatures to builds.
#
package Bootstrap::Step::Sign;
use Bootstrap::Step;
@ISA = ("Bootstrap::Step");
sub Execute {
my $this = shift;
$this->Shell('cmd' => 'echo sign');
}
sub Verify {
my $this = shift;
$this->Shell('cmd' => 'echo Verify sign');
}
1;