From 53a9c50c7077f54e3c3ce19b99ad2384fe91efc4 Mon Sep 17 00:00:00 2001 From: rustmaestro <81419749+rustmaestro@users.noreply.github.com> Date: Fri, 27 Sep 2024 14:14:14 +0200 Subject: [PATCH] Pin mysql-client version to 8.4 Mysql-client 9.0 removed the `mysql_native_password` authentication plugin, causing mysql-client to throw an error when trying to authenticate as a user with that specific mode of authentication --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index e3ebdfb..00e6724 100755 --- a/install.sh +++ b/install.sh @@ -205,7 +205,7 @@ done echo " Installing mysql-client, gnu-sed, pv, jq, imagemagick, pkg-config" -brew install gnu-sed mysql-client pv jq imagemagick pkg-config &>/dev/null +brew install gnu-sed mysql-client@8.4 pv jq imagemagick pkg-config &>/dev/null brew link mysql-client --force &>/dev/null