Removing escape char processing from strenv #2517

This commit is contained in:
Mike Farah
2025-11-25 10:44:03 +11:00
parent 9e0c5fd3c9
commit 1b91fc63ea
2 changed files with 1 additions and 73 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ func envOperator(_ *dataTreeNavigator, context Context, expressionNode *Expressi
node = &CandidateNode{
Kind: ScalarNode,
Tag: "!!str",
Value: processEscapeCharacters(rawValue),
Value: rawValue,
}
} else if rawValue == "" {
return Context{}, fmt.Errorf("value for env variable '%v' not provided in env()", envName)