From 7eb1720d3baf80d95c3dc5c7390005d1bf14cd76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Tue, 15 Dec 2020 09:49:04 +0100 Subject: [PATCH] fix(Bash/installer): client data version (#3992) --- apps/installer/includes/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/installer/includes/functions.sh b/apps/installer/includes/functions.sh index ca9cfe1c9..a0b985eae 100644 --- a/apps/installer/includes/functions.sh +++ b/apps/installer/includes/functions.sh @@ -222,6 +222,6 @@ function inst_download_client_data { local path="$AC_BINPATH_FULL" echo "Downloading client data in: $path/data.zip ..." - curl -L https://github.com/wowgaming/client-data/releases/download/v7/data.zip > "$path/data.zip" \ + curl -L https://github.com/wowgaming/client-data/releases/download/v9/data.zip > "$path/data.zip" \ && unzip -o "$path/data.zip" -d "$path/" && rm "$path/data.zip" }