mirror of
https://github.com/mangosfour/server.git
synced 2025-12-11 07:37:02 +00:00
8 lines
106 B
Bash
8 lines
106 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
if [[ x$OSTYPE =~ ^xdarwin ]]; then
|
|
brew update
|
|
brew install "mysql"
|
|
fi
|