rhelmer%mozilla.com c9de3e61f0 first stab at release automation framework. r=preed r=tfullhart b=352230
git-svn-id: svn://10.0.0.236/trunk@212894 18797224-902f-48f8-a5cc-f745e15eee43
2006-09-29 23:21:26 +00:00

16 lines
248 B
Perl

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;