Fix jq args.
This commit is contained in:
parent
ec8c0126e3
commit
982bf1944e
1 changed files with 2 additions and 2 deletions
|
@ -69,10 +69,10 @@ get_command() {
|
|||
jq -r '.params.command // ["true"]' < "$INPUT_PATH" | jq -r '.[]' | tr '\n"' " '"
|
||||
}
|
||||
get_stderr_file() {
|
||||
jq -r '.params.stderr_file // "-"' | jq -r tostring
|
||||
jq -r '.params.stderr_file // "-"' < "$INPUT_PATH"
|
||||
}
|
||||
get_stdout_file() {
|
||||
jq -r '.params.stdout_file // "-"' | jq -r tostring
|
||||
jq -r '.params.stdout_file // "-"' < "$INPUT_PATH"
|
||||
}
|
||||
|
||||
HOSTNAME="$(get_hostname)"
|
||||
|
|
Loading…
Reference in a new issue