mirror of
https://github.com/certbot/certbot.git
synced 2026-01-21 19:01:07 +03:00
9 lines
231 B
Bash
Executable File
9 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
|