remove Release step as per README

This commit is contained in:
rhelmer%mozilla.com 2006-11-10 04:44:40 +00:00
Родитель 0b5a3c2706
Коммит 53cbfd182b
1 изменённых файлов: 0 добавлений и 18 удалений

Просмотреть файл

@ -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;