diff --git a/tools/release/Bootstrap/Step/Release.pm b/tools/release/Bootstrap/Step/Release.pm deleted file mode 100644 index 67348dac563f..000000000000 --- a/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;