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