9 lines
152 B
Bash
Executable File
9 lines
152 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Preparing macOS environment"
|
|
sysctl hw.model hw.machine hw.ncpu hw.physicalcpu hw.logicalcpu
|
|
set -e
|
|
set -x
|
|
|
|
brew install cmake openssl
|