You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is it possible to run deploy:set_permissions:acl at the really end of the deployment process? It actually seems that a composer install process sets some file permissions which I need to override, thanks.
The text was updated successfully, but these errors were encountered:
If you simply want to make sure it runs after composer, you can use after "composer:run", "deploy:set_permissions:acl”.
Likewise, you can have it run after/before any other process (or hook) that is defined. Check the output of capistrano, you can see which processes run in which order, and use the “before” or “after” to insert your process where it suits your needs!
is it possible to run
deploy:set_permissions:acl
at the really end of the deployment process? It actually seems that acomposer install
process sets some file permissions which I need to override, thanks.The text was updated successfully, but these errors were encountered: