Skip to content
Snippets Groups Projects
Commit 26147bb9 authored by Sam Minnee's avatar Sam Minnee
Browse files

NEW: Added post-install and post-update dev/build call.

With this change, composer will automatically call dev/build after an update or install
command.  The main reason that this is 3.1-only is that previous releases would have
necessitated the use of 'sudo -u www-data', which is too environment-specific.

One thing that this may cause problems with is 'composer create-project' in an environment
without a _ss_environment file.  It will call dev/build, and dev/build will throw an
error.  That should be fixed in a subsequent commit.
parent 16c72aac
No related branches found
No related tags found
No related merge requests found
......@@ -10,5 +10,9 @@
"config": {
"process-timeout": 600
},
"scripts": {
"post-install-cmd": "php ./framework/cli-script.php dev/build",
"post-update-cmd": "php ./framework/cli-script.php dev/build"
},
"minimum-stability": "dev"
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment