We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a02db commit deec354Copy full SHA for deec354
lib/capistrano/tasks/symfony.rake
@@ -80,7 +80,11 @@ namespace :symfony do
80
task :build_bootstrap do
81
on release_roles :all do
82
within release_path do
83
- execute :php, build_bootstrap_path, fetch(:app_path)
+ if fetch(:symfony_directory_structure) == 2
84
+ execute :php, build_bootstrap_path, fetch(:app_path)
85
+ else
86
+ execute :php, build_bootstrap_path, fetch(:var_path)
87
+ end
88
end
89
90
0 commit comments