Output to stderr instead of stdout in release message script

stdout is used for actual data output which is captured by
the ci pipeline. stderr shows up properly in debug output
This commit is contained in:
icex2
2021-12-28 23:40:21 +01:00
parent 8879347b75
commit 1100f28f31
+1 -1
View File
@@ -23,6 +23,6 @@ if [ "$changelog_excerpt" ]; then
printf "%s" "$changelog_excerpt"
exit 0
else
echo "Could not find version in changelog: $VERSION"
>&2 echo "Could not find version in changelog: $VERSION"
exit 1
fi