From 5966744e34e1df724b5c612fac4bf4b9211e90f2 Mon Sep 17 00:00:00 2001 From: redxef Date: Tue, 22 Nov 2022 00:26:06 +0100 Subject: [PATCH] Document std(err|out)_file param. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1734633..c8bb576 100644 --- a/README.md +++ b/README.md @@ -56,3 +56,5 @@ Push all configured files to the server and run the specified command afterwards - workdir: *Optional*. *Default* `$HOME`. The remote directory to use as `cwd` when running commands. - command: *Optional*. *Default* `[true]`. A command to execute on the remote, given as list. +- stderr_file: *Optional*. *Default* `-`. A file on the remote which should contain the stderr of the command. If `-` is given it will be redirected to stderr and available in concourse. +- stdout_file: *Optional*. *Default* `-`. See `stderr_file` for more info. `stderr_file` and `stdout_file` can be the same.