[Capistrano] Re: Can I deploy a specific revision

2007-08-16 Thread Drinkingbird
You can deploy a specific revision by setting the revision variable. You can do this in the recipe file with set :revision, 60. Since it's the sort of thing you might not want to set permanently, you can also do something along the lines of: cap deploy -s revision=60 On Aug 9, 5:02 pm, Alan

[Capistrano] Re: Can I deploy a specific revision

2007-08-09 Thread Jamis Buck
Yes, set the :revision variable to the revision you want to deploy: set :revision, 12345 - Jamis On 8/9/07, Alan Bullock [EMAIL PROTECTED] wrote: Hi all I'm just getting started with Capistrano 2. I was wondering if there's a way to deploy a specific revision of my app (I'm using svn)