mirror of
https://gh.wpcy.net/https://github.com/wp-cli/extension-command.git
synced 2026-04-26 02:15:07 +08:00
11 lines
354 B
Bash
Executable file
11 lines
354 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
|
|
mysql -e 'GRANT ALL PRIVILEGES ON wp_cli_test_scaffold.* TO "wp_cli_test"@"localhost" IDENTIFIED BY "password1"' -uroot
|
|
}
|
|
|
|
install_db
|