Changeset 8753
- Timestamp:
- 01/30/08 05:49:16 (5 months ago)
- Files:
-
- tools/capistrano/CHANGELOG (modified) (1 diff)
- tools/capistrano/lib/capistrano/recipes/deploy/scm/bzr.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/capistrano/CHANGELOG
r8752 r8753 1 1 *SVN* 2 3 * Use checkout --lightweight for bzr checkout, instead of branch [michiels] 2 4 3 5 * Make sure bzr SCM works when revision is head (or unspecified) [michiels] tools/capistrano/lib/capistrano/recipes/deploy/scm/bzr.rb
r8752 r8753 22 22 # given destination. 23 23 def checkout(revision, destination) 24 scm : branch, revswitch(revision), repository, destination24 scm :checkout, "--lightweight", revswitch(revision), repository, destination 25 25 end 26 26