Open tvallin opened 2 months ago
From @romain-grecourt:
Add the capability to resolve variable in path. This improve the readability and remove unnecessary code lines, if statements.
if
From
<exec src="/nodes/mp/inputs.xml" if="${flavor} == 'mp'"/> <exec src="/nodes/se/inputs.xml" if="${flavor} == 'se'"/>
To
<exec src="/nodes/${flavor}/inputs.xml"/>
From @romain-grecourt:
Add the capability to resolve variable in path. This improve the readability and remove unnecessary code lines,
if
statements.Use case
From
To