From a8e848b0546662df10f0e3506c382d3f68d097a1 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Mon, 17 Sep 2018 12:40:43 +0000 Subject: [PATCH] updated client data downloading url --- 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 34b5d9774..fcf26bda6 100644 --- a/apps/installer/includes/functions.sh +++ b/apps/installer/includes/functions.sh @@ -202,6 +202,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/v4/data.zip > "$path/data.zip" \ + curl -L https://github.com/wowgaming/client-data/releases/download/v5/data.zip > "$path/data.zip" \ && unzip -o "$path/data.zip" -d "$path/" && rm "$path/data.zip" }