mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
11 lines
498 B
Plaintext
11 lines
498 B
Plaintext
Bugfix: Return error when no bytes could be read from stdin
|
|
|
|
We assume that users reading backup data from stdin want to know when no data
|
|
could be read, so now restic returns an error when `backup --stdin` is called
|
|
but no bytes could be read. Usually, this means that an earlier command in a
|
|
pipe has failed. The documentation was amended and now recommends setting the
|
|
`pipefail` option (`set -o pipefail`).
|
|
|
|
https://github.com/restic/restic/pull/2135
|
|
https://github.com/restic/restic/pull/2139
|