Improve stripping logic

This commit is contained in:
Julian Ospald 2022-12-21 13:44:31 +08:00
parent cb0d8b80c3
commit a5f2067d76
Signed by: hasufell
GPG Key ID: 3786C5262ECB4A3F

View File

@ -167,13 +167,15 @@ install_ghcup() {
strip_binary() { strip_binary() {
( (
set -e set -e
binary=$1 local binary=$1
if [ "${RUNNER_OS}" = "macOS" ] ; then case "$(uname -s)" in
strip "${binary}" "Darwin"|"darwin")
else ;;
if [ "${RUNNER_OS}" != "Windows" ] ; then MSYS_*|MINGW*)
;;
*)
strip -s "${binary}" strip -s "${binary}"
fi ;;
fi esac
) )
} }