* switch to 1.1 + test * fix echo * add path test * fix version test * Update comment Co-authored-by: Mike McQuaid <[email protected]> Co-authored-by: Mike McQuaid <[email protected]>
13 lines
296 B
Bash
Executable File
13 lines
296 B
Bash
Executable File
#!/bin/bash -e -o pipefail
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
echo "Install latest openssl"
|
|
brew install openssl
|
|
|
|
echo "Install [email protected]"
|
|
brew install [email protected]
|
|
|
|
# Symlink brew [email protected] to `/usr/local/bin` as Homebrew refuses
|
|
ln -sf $(brew --prefix [email protected])/bin/openssl /usr/local/bin/openssl
|