From e4a3282d2aa4745a2e121ace6b73848620142c2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Sun, 25 Aug 2019 13:18:11 +0200 Subject: [PATCH] fix(bash): update the data files version (#2235) --- 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 87c054e4f..365afb6a3 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/v6/data.zip > "$path/data.zip" \ + curl -L https://github.com/wowgaming/client-data/releases/download/v7/data.zip > "$path/data.zip" \ && unzip -o "$path/data.zip" -d "$path/" && rm "$path/data.zip" }