summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrey Christoforo2017-08-02 16:56:28 +0100
committerGrey Christoforo2017-08-02 16:56:28 +0100
commitbe9b14a349efddf3793597655e7fe053eaf99623 (patch)
treec5f44a18eaa6b3bda8f544f3d2f4883975dd0792
parent617c2bafeee578702fe219c7c2e03c3be7c1f95e (diff)
downloadaur-be9b14a349efddf3793597655e7fe053eaf99623.tar.gz
replace echo with msg2
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1aec07d41b66..82be66996fc6 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Wed Aug 2 14:14:14 UTC 2017
+# Wed Aug 2 15:56:26 UTC 2017
pkgbase = albion-online-live-game-data-bin
pkgdesc = The first true cross-platform Sandbox MMO -- game data files for live server
pkgver = 1.0.327.93586
- pkgrel = 1
+ pkgrel = 2
url = https://albiononline.com/
arch = x86_64
license = custom
diff --git a/PKGBUILD b/PKGBUILD
index 984071ef6fe4..eac9b7b34e10 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=albion-online-live-game-data-bin
pkgver=1.0.327.93586
-pkgrel=1
+pkgrel=2
pkgdesc="The first true cross-platform Sandbox MMO -- game data files for live server"
url="https://albiononline.com/"
arch=('x86_64')
@@ -29,9 +29,9 @@ read_dom () {
parse_dom () {
if [[ $TAG_NAME = "file" ]] ; then
eval local ${ATTRIBUTES::-1}
- #echo "$TAG_NAME path is: $path"
- #echo "$TAG_NAME md5 is: $md5"
- echo "Fetching $path..."
+ #msg2 "$TAG_NAME path is: $path"
+ #msg2 "$TAG_NAME md5 is: $md5"
+ msg2 "Fetching $path..."
mkdir -p "${srcdir}/opt/albion-online-launcher-bin/game_x64/$(dirname "$path")"
curl -# -L "${_URL_PREFIX}/${path// /%20}" | bsdtar -xf - -C "${srcdir}/opt/albion-online-launcher-bin/game_x64/$(dirname "$path")"
fi