public
Description: Remote multi-server automation tool
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
don't run the upgrade:revisions task on non-release servers


git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@7857 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
jamis (author)
Sat Oct 13 07:10:32 -0700 2007
commit  d5c571f3e10ae6e8e10906c64d55bf9e3beb1fbe
tree    2504febf436c438d51e1d81f1a0733ffcc6a4bfc
parent  6692d8e83a72b32b1aaa5e043fa46be57275f1a4
...
1
2
 
 
3
4
5
...
1
2
3
4
5
6
7
0
@@ -1,5 +1,7 @@
0
 *SVN*
0
 
0
+* Don't run the upgrade:revisions task on non-release servers [Jamis Buck]
0
+
0
 * Fix cap shell to properly recognize sudo prompt [Mark Imbriaco, barnaby, Jamis Buck]
0
 
0
 * Git SCM module [Garry Dolley, Geoffrey Grosenbach, Scott Chacon]
...
10
11
12
13
 
14
15
16
...
10
11
12
 
13
14
15
16
0
@@ -10,7 +10,7 @@ namespace :upgrade do
0
     tag file used in Capistrano 2.x. It is non-destructive and may be safely \
0
     run any number of times.
0
   DESC
0
- task :revisions do
0
+ task :revisions, :except => { :no_release => true } do
0
     revisions = capture("cat #{deploy_to}/revisions.log")
0
 
0
     mapping = {}

Comments

    No one has commented yet.