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

[MacOS] Install script failed due to usage of sha256sum #1012

Closed
curzolapierre opened this issue Sep 26, 2023 · 0 comments · Fixed by #1013
Closed

[MacOS] Install script failed due to usage of sha256sum #1012

curzolapierre opened this issue Sep 26, 2023 · 0 comments · Fixed by #1013
Assignees

Comments

@curzolapierre
Copy link
Member

curzolapierre commented Sep 26, 2023

Following the addition of checksum (#988) check, the installation of the script is not working anymore on MacOS lacking some tools (i.e. sha256sum, wget not installed by default).

A test has been added on #1002 (issue: #1001), but it is probably not what we want to.
Either the script installs the tools or it uses other tools.

E.g. replace sha256sum by a function that use openssl:

function sha256sum() { openssl sha256 "$@" | awk '{print $2}'; }

e.g. replace wget by curl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant