PHPloy
PHPloy copied to clipboard
order of include[] in ini file matters
Thank you for you hard work on this project.
I've been having a minor issue in that the order of a include[]
seems to make a difference for condition includes. For example, an .ini
file with:
include[] = 'path_a:composer.lock'
include[] = 'path_b'
will not include path_b
in the deployment. However the reverse does work:
include[] = 'path_b'
include[] = 'path_a:composer.lock'
I'm not certain what the exact issue is, but it appears that a conditional include
must be listed after the non-conditional include
thank you