diff --git a/mozilla/tools/release/Bootstrap/Step/Release.pm b/mozilla/tools/release/Bootstrap/Step/Release.pm deleted file mode 100644 index 67348dac563..00000000000 --- a/mozilla/tools/release/Bootstrap/Step/Release.pm +++ /dev/null @@ -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;