7 lines
91 B
Bash
Executable File
7 lines
91 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
if [[ x$OSTYPE =~ ^xdarwin ]]; then
|
|
brew install "mysql"
|
|
fi |