From cde067390f9e7bc884361174cde882ae4cedfcd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Fri, 9 Apr 2021 09:35:19 +0200 Subject: [PATCH] fix(Bash): client data files version 10 (#5146) --- 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 4861275d9..ff00f91e2 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/v9/data.zip > "$path/data.zip" \ + curl -L https://github.com/wowgaming/client-data/releases/download/v10/data.zip > "$path/data.zip" \ && unzip -o "$path/data.zip" -d "$path/" && rm "$path/data.zip" }