Skip to content

Commit

Permalink
Merge pull request metal3-io#1374 from Nordix/fix/lib-releases
Browse files Browse the repository at this point in the history
Echo error string in stderr instead of stdout
  • Loading branch information
metal3-io-bot committed Mar 26, 2024
2 parents 9397a0d + 3da008e commit a95494b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/releases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function get_latest_release() {

# if release_tag is not found
if [ -z "${release_tag}" ]; then
echo "Error: release is not found from ${release_path}"
echo "Error: release is not found from ${release_path}" >&2
exit 1
else
echo "${release_tag}"
Expand Down

0 comments on commit a95494b

Please sign in to comment.