1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Merge pull request #1440 from ojab/master

Remove 'vendor/bundle' from default :linked_dirs
This commit is contained in:
Lee Hambley 2015-08-10 10:56:49 +02:00
commit 6ebeea4077
3 changed files with 3 additions and 2 deletions

View file

@ -6,6 +6,7 @@ Reverse Chronological Order:
https://github.com/capistrano/capistrano/compare/v3.4.0...HEAD
* Remove 'vendor/bundle' from default :linked_dirs (@ojab)
* Removed the post-install message (@Kriechi)
* Minor changes

View file

@ -26,7 +26,7 @@ set :repo_url, 'git@example.com:me/my_repo.git'
# set :linked_files, fetch(:linked_files, []).push('config/database.yml', 'config/secrets.yml')
# Default value for linked_dirs is []
# set :linked_dirs, fetch(:linked_dirs, []).push('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', 'public/system')
# Default value for default_env is {}
# set :default_env, { path: "/opt/ruby/bin:$PATH" }

View file

@ -29,7 +29,7 @@ module TestApp
end
def linked_dirs
%w{bin log public/system vendor/bundle}
%w{bin log public/system}
end
def create_test_app