Actions
Bug #25148
closedRudderc fails to render "plain" variables on Windows
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
0
Name check:
To do
Fix check:
To do
Regression:
No
Description
It looks like the technique rendering of variable calls such as ${plouf.plouf}
are failing.
They are translated as raw string without their braces.
See the example below:
test ${bundle.plouf}
Will be translated in the technique.ps1 file to:
Lines = @' test '@ + @' bundle.plouf '@
The parsing seems correct, the issue seems to come from the force_long_name_for_technique_param
function which translates short technique names to their long equivalent.
Actions