mirror of
https://ghproxy.net/https://github.com/bbpress/wp-cli-bbpress.git
synced 2026-03-06 22:23:36 +08:00
10 lines
233 B
Bash
Executable file
10 lines
233 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
install_db() {
|
|
mysql -e 'CREATE DATABASE IF NOT EXISTS wp_cli_test;' -uroot
|
|
mysql -e 'GRANT ALL PRIVILEGES ON wp_cli_test.* TO "wp_cli_test"@"localhost" IDENTIFIED BY "password1"' -uroot
|
|
}
|
|
|
|
install_db
|