Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8753

Show
Ignore:
Timestamp:
01/30/08 05:49:16 (5 months ago)
Author:
minam
Message:

Use checkout --lightweight for bzr checkout, instead of branch (closes #9547)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/capistrano/CHANGELOG

    r8752 r8753  
    11*SVN* 
     2 
     3* Use checkout --lightweight for bzr checkout, instead of branch [michiels] 
    24 
    35* Make sure bzr SCM works when revision is head (or unspecified) [michiels] 
  • tools/capistrano/lib/capistrano/recipes/deploy/scm/bzr.rb

    r8752 r8753  
    2222        # given destination. 
    2323        def checkout(revision, destination) 
    24           scm :branch, revswitch(revision), repository, destination 
     24          scm :checkout, "--lightweight", revswitch(revision), repository, destination 
    2525        end 
    2626