File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,14 @@ miniforge_arch="$(uname -m)"
1010miniforge_version=" 4.10.3-10"
1111condapkg=" https://github.com/conda-forge/miniforge/releases/download/${miniforge_version} /Mambaforge-${miniforge_version} -MacOSX-${miniforge_arch} .sh"
1212if [ " $( uname -m) " = " x86_64" ]; then
13- # hmaarrfk: 2021/12/01 Not too sure how to check sha256sums on OSX
14- # shellcheck disable=SC2034
1513 conda_chksum=" 7c44259a0982cd3ef212649678af5f0dd4e0bb7306e8fffc93601dd1d739ec0b"
1614elif [ " $( uname -m) " = " arm64" ]; then
17- # hmaarrfk: 2021/12/01 Not too sure how to check sha256sums on OSX
18- # shellcheck disable=SC2034
1915 conda_chksum=" 72bc86612ab9435915b616c2edb076737cbabe2c33fd684d58c2f9ae72e1957c"
2016else
2117 exit 1
2218fi
2319curl -s -L " $condapkg " > miniconda.sh
24- # hmaarrfk: 2021/12/01 Not too sure how to check sha256sums on OSX
25- # sha256sum miniconda.sh | grep $conda_chksum
20+ openssl sha256 miniconda.sh | grep $conda_chksum
2621
2722bash miniconda.sh -b -p ~ /conda
2823
You can’t perform that action at this time.
0 commit comments