From cb6439bacd8b5d10ef2a4d2eb4e8ab2f950e4ffd Mon Sep 17 00:00:00 2001 From: Giacomo Pozzoni Date: Sat, 26 Jan 2019 20:46:33 +0100 Subject: Circle CI (#22982) * Build/CI: Add Circle CI * Fix travis --- contrib/check_updates.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/check_updates.sh b/contrib/check_updates.sh index 6c33d07ae8b..4376b9a6bf9 100644 --- a/contrib/check_updates.sh +++ b/contrib/check_updates.sh @@ -2,13 +2,14 @@ name=$1 branch=$2 database=$3 +host=$4 echo "Database Updater check script:" echo " Checking database '${name}' for missing filenames in tables..." echo # Select all entries which are in the updates table -entries=$(mysql -uroot ${database} -e "SELECT name FROM updates" | grep ".sql") +entries=$(mysql -uroot ${database} -h ${host} -e "SELECT name FROM updates" | grep ".sql") cd sql/updates/${name}/${branch} -- cgit v1.2.3