mirror of
https://github.com/certbot/certbot.git
synced 2026-02-18 10:07:49 -05:00
8 lines
231 B
Bash
Executable file
8 lines
231 B
Bash
Executable file
#!/bin/sh
|
|
if ! hash brew 2>/dev/null; then
|
|
echo "Homebrew Not Installed\nDownloading..."
|
|
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
|
fi
|
|
|
|
brew install augeas
|
|
brew install dialog
|