remove Release step as per README

git-svn-id: svn://10.0.0.236/trunk@215088 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rhelmer%mozilla.com
2006-11-10 04:44:40 +00:00
parent 14fa38266d
commit d7ba3c028e

View File

@@ -1,18 +0,0 @@
#
# Release step. Pushes bits to production.
#
package Bootstrap::Step::Release;
use Bootstrap::Step;
@ISA = ("Bootstrap::Step");
sub Execute {
my $this = shift;
$this->Shell('cmd' => 'echo release');
}
sub Verify {
my $this = shift;
$this->Shell('cmd' => 'echo Verify release');
}
1;