1
0
mirror of https://github.com/djhackersdev/bemanitools.git synced 2024-11-23 22:30:56 +01:00

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 6e0e5031ac
commit 729f5abcc0

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