Skip to content

Commit

Permalink
Do not link .env by default (#108)
Browse files Browse the repository at this point in the history
* Do not link .env by default

* Update CHANGELOG.md

* Typo
  • Loading branch information
Nyholm committed Nov 6, 2018
1 parent 5e83827 commit e179857
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Capistrano Symfony 1.x Changelog

## `2.0.0`

We are not linking `.env` by default. To upgrade from `2.0.0-alfa2` please add the following:

`set :linked_files, [".env"]`

## `2.0.0-alfa2`

Expand Down
4 changes: 2 additions & 2 deletions lib/capistrano/symfony/defaults.rb
Expand Up @@ -25,7 +25,7 @@
#
# Capistrano defaults
#
set :linked_files, -> { [".env"] }
set :linked_files, -> { [] }
set :linked_dirs, -> { [fetch(:log_path)] }

#
Expand All @@ -37,4 +37,4 @@

# Role filtering
set :symfony_roles, :all
set :symfony_deploy_roles, :all
set :symfony_deploy_roles, :all

0 comments on commit e179857

Please sign in to comment.