redirect command stdout to stderr

Otherwise it will be interpreted as compute program protocol
This commit is contained in:
Joey Hess 2025-03-07 16:01:27 -04:00
parent 2c6dce83de
commit ed51924211
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
2 changed files with 2 additions and 2 deletions

View file

@ -110,5 +110,5 @@ An example `git-annex-compute-foo` shell script follows:
echo REPRODUCIBLE
if [ -n "$input" ]; then
frobnicate --passes="$ANNEX_COMPUTE_passes" <"$input" >"$output"
frobnicate --passes="$ANNEX_COMPUTE_passes" -i "$input" -o "$output" >&2
fi