Skip to content

Commit deec354

Browse files
committed
Fix bootstrap build path for v3 directory structure
1 parent f7a02db commit deec354

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/capistrano/tasks/symfony.rake

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,11 @@ namespace :symfony do
8080
task :build_bootstrap do
8181
on release_roles :all do
8282
within release_path do
83-
execute :php, build_bootstrap_path, fetch(:app_path)
83+
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
8488
end
8589
end
8690
end

0 commit comments

Comments
 (0)