Currently, the hack scripts are being sourced from vendor/ directory. To stop relying on hack being in vendor we need a different way to provide the scripts to the projects.
There were at least two proposals:
Sync the hack scripts to projects using a robot, preferably using git subtree to keep the separation. (@upodroid idea)
Embed Bash scripts withing some hack binary. That binary, when executed, will extract them to a temporary directory, and provide the path to the scripts, so they could be sourced. (@cardil idea)
Currently, the hack scripts are being sourced from
vendor/
directory. To stop relying on hack being invendor
we need a different way to provide the scripts to the projects.There were at least two proposals:
git subtree
to keep the separation. (@upodroid idea)