summaryrefslogtreecommitdiff
path: root/apps/installer/includes/functions.sh
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2021-04-09 09:35:19 +0200
committerGitHub <noreply@github.com>2021-04-09 09:35:19 +0200
commitcde067390f9e7bc884361174cde882ae4cedfcd6 (patch)
treedf96a372d3007a49a4b3bb96fa776be321e9a3a0 /apps/installer/includes/functions.sh
parent1367475a59fcd284d1f11aaff1beafd3db6e3f7e (diff)
fix(Bash): client data files version 10 (#5146)
Diffstat (limited to 'apps/installer/includes/functions.sh')
-rw-r--r--apps/installer/includes/functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/installer/includes/functions.sh b/apps/installer/includes/functions.sh
index 4861275d96..ff00f91e2c 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"
}