Skip to content

Commit

Permalink
Do not make bin/ shared directory by default
Browse files Browse the repository at this point in the history
1) bin/ is often checked out into repo
2) capistrano/bundler#45 (comment)
  • Loading branch information
kirs committed Jan 12, 2015
1 parent 239b03a commit 7fa8ab5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Reverse Chronological Order:
## master
* Fixed updating roles when custom user or port is specified. (@ayastreb)

* `bin/` dirctory is not listed in `linked_dirs` by default anymore (@kirs)
* bin/ is often checked out into repo
* https://github.com/capistrano/bundler/issues/45#issuecomment-69349237

https://github.com/capistrano/capistrano/compare/v3.3.5...HEAD

## `3.3.5`
Expand Down
2 changes: 1 addition & 1 deletion lib/capistrano/templates/deploy.rb.erb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set :repo_url, 'git@example.com:me/my_repo.git'
# set :linked_files, fetch(:linked_files, []).push('config/database.yml')

# Default value for linked_dirs is []
# set :linked_dirs, fetch(:linked_dirs, []).push('bin', 'log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system')
# set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system')

# Default value for default_env is {}
# set :default_env, { path: "/opt/ruby/bin:$PATH" }
Expand Down

0 comments on commit 7fa8ab5

Please sign in to comment.