functionbuilder
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nathan Coad
2023-02-10 16:54:40 +11:00
parent bceb78033c
commit 178e27bc7e
4 changed files with 15 additions and 3 deletions

View File

@@ -72,6 +72,10 @@ func init() {
"out-filename"
],
"properties": {
"in-data": {
"description": "json input to convert to spreadsheet",
"type": "object"
},
"infile": {
"description": "Name of the json input file to utilise",
"type": "string"
@@ -137,7 +141,7 @@ func init() {
},
{
"action": "exec",
"exec": "ls -la /tmp",
"exec": "/bin/bash -c \"echo '{{ .InData | toJson }}' \u003e /tmp/input.json\"",
"print": true,
"silent": false
},
@@ -320,7 +324,7 @@ func init() {
},
{
"action": "exec",
"exec": "ls -la /tmp",
"exec": "/bin/bash -c \"echo '{{ .InData | toJson }}' \u003e /tmp/input.json\"",
"print": true,
"silent": false
},
@@ -424,6 +428,10 @@ func init() {
"out-filename"
],
"properties": {
"in-data": {
"description": "json input to convert to spreadsheet",
"type": "object"
},
"infile": {
"description": "Name of the json input file to utilise",
"type": "string"