From d7ba3c028e2c6bfc94d13fc9fa88b67b281ef3ff Mon Sep 17 00:00:00 2001 From: "rhelmer%mozilla.com" Date: Fri, 10 Nov 2006 04:44:40 +0000 Subject: [PATCH] remove Release step as per README git-svn-id: svn://10.0.0.236/trunk@215088 18797224-902f-48f8-a5cc-f745e15eee43 --- .../tools/release/Bootstrap/Step/Release.pm | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 mozilla/tools/release/Bootstrap/Step/Release.pm 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;