Explorar el Código
merged branch weaverryan/bootstrap_configurable_base (PR #9)
Commits
-------
dc8a195 Allowing the base path used by the build_bootstrap.php script to be configurable as an argument
Discussion
----------
Allowing the base path used by the build_bootstrap.php script to be configured
Hey guys!
This allows the base path used by the bootstrap build script to be configurable. This addresses a specific deployment problem where each deployment is a new clone of the project, but the vendor directory is symlinked to a "shared" directory for efficiency. In this case, since the vendor directory actually exists in a place outside of the project, the bootstrap file is built in the wrong location.
The related issue on capifony is #34. If this is accepted, I'll also make a PR to the standard distribution, so that the bin/vendors script explicitly passes the `$rootDir` path (https://github.com/symfony/symfony-standard/blob/master/bin/vendors#L13) when it calls the `build_bootstrap.php` file.
Thanks!