2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 12:39:01 +00:00

Merge pull request #1 from slushpuppy/slushpuppy-patch-1

Update setup_frappe.sh
This commit is contained in:
slushpuppy 2016-06-25 00:15:34 +08:00 committed by GitHub
commit 4eadc46844

View File

@ -137,7 +137,8 @@ add_debian_mariadb_repo() {
run_cmd sudo apt-get update
run_cmd sudo apt-get install -y software-properties-common python-software-properties
run_cmd sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db
if [ -z $(apt-cache search --names-only 'mariadb-server') ]; then
$repo_test=$(apt-cache search --names-only 'mariadb-server')
if [ -z "$repo_test" ]; then
run_cmd sudo add-apt-repository "deb http://ams2.mirrors.digitalocean.com/mariadb/repo/10.0/debian $CODENAME main"
fi
}