bandaid-apply checks for the existence of a local.patch file and applies it if available. Afterwards the patch file is deleted. Is this necessary?
In my opinion the existence of a local.path file shows developers that the project has been modified locally and that these changes should be reapplied after updating the project resulting in the following workflow:
- `drush dl some-project``
- If a
some-project.local.path file exists: drush ba some-project.
If the local.patch file is deleted the following workflow seems to be required
drush bt some-project - or check VCS history to see if the files for the project have been changed after updating
- `drush dl some-project``
- If a
some-project.local.path file exists: drush ba some-project.