summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMickaël Thomas2016-10-05 22:13:09 +0200
committerMickaël Thomas2016-10-05 22:13:49 +0200
commit84f5d34920684f075d81d0ff6abda84155f9f00d (patch)
tree93f5e30b25f861bb822deec22b2f767de6410266 /PKGBUILD
parentdfa8ef4d5c9ca1e3254125f2c7fd77e0de15996e (diff)
downloadaur-84f5d34920684f075d81d0ff6abda84155f9f00d.tar.gz
Update to 0.14.13
Also add retries to download command because sometimes the download server replies with 500 errors.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index b876862b1289..35b90043f74c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Sebastien Duthil <duthils@free.fr>
pkgname=factorio-experimental
-pkgver=0.14.12
+pkgver=0.14.13
pkgrel=1
pkgdesc="A 2D game about building and maintaining factories (experimental branch)"
arch=('i686' 'x86_64')
@@ -114,7 +114,8 @@ _download() {
msg2 "Logged in"
msg "Downloading ${_gamepkg} from $_url ..."
- curl --fail --location \
+ curl --retry 10 --retry-delay 3 \
+ --fail --location \
--cookie "$cookie" \
--continue-at - \
--output "${file}.part" \