Why
I attempted to use the parameter of command as a variable.
For example:
original main.json
{
...
Command: ["go", "main.go"],
...
}
variableized main.json
// main.json
{
...
Command: "$command",
...
}
// command.json
{
"command": ["go", "main.go"]
}
The execution result of pnzr is as follows.
// rendered config
{
...
"Command": null,
...
}
Note
Why
I attempted to use the parameter of command as a variable.
For example:
original main.json
variableized main.json
The execution result of pnzr is as follows.
Note