Reputation: 9418
In a phing build file, when I import another build file and then override a target from that build file, is there a way to execute the parent target in order to "append" functionality?
Upvotes: 1
Views: 338
Reputation: 31117
Yes, this is possible: Just use the full name of the target, e.g. $parentProjectname.$targetname
. Those are also listed when running
$ phing -l
Upvotes: 2