Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed output from stderr to stdout if the checksum is ok. #336

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions makeself-header.sh
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ MS_Check()
echo "Error in SHA256 checksums: \$shasum is different from \$sha" >&2
exit 2
elif test x"\$quiet" = xn; then
MS_Printf " SHA256 checksums are OK." >&2
MS_Printf " SHA256 checksums are OK."
fi
crc="0000000000";
fi
Expand All @@ -285,7 +285,7 @@ MS_Check()
echo "Error in MD5 checksums: \$md5sum is different from \$md5" >&2
exit 2
elif test x"\$quiet" = xn; then
MS_Printf " MD5 checksums are OK." >&2
MS_Printf " MD5 checksums are OK."
fi
crc="0000000000"; verb=n
fi
Expand All @@ -298,7 +298,7 @@ MS_Check()
echo "Error in checksums: \$sum1 is different from \$crc" >&2
exit 2
elif test x"\$quiet" = xn; then
MS_Printf " CRC checksums are OK." >&2
MS_Printf " CRC checksums are OK."
fi
fi
i=\`expr \$i + 1\`
Expand Down