summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorfelics2018-11-07 14:01:19 +0100
committerfelics2018-11-07 14:01:19 +0100
commitacb511139a5ee6ba70dc50a9a30b542503497ece (patch)
tree6c680dc8b01beae370e0aa380de50962b1dc0c7e
parent187873eca19ec7b3209adbf449eadb820a25a2bb (diff)
downloadaur-acb511139a5ee6ba70dc50a9a30b542503497ece.tar.gz
Changed '> /dev/stderr' to '>&2' in the PKGBUILD.
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 246bd618b90e..0dfb7ef6dbe2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = audible-activator-git
pkgdesc = A script to retrieve your activation data (activation_bytes) from Audible servers. Use it to play your aax or aax+ files downloaded from amazon audible. Needs chrome or chromium.
- pkgver = 0.2.rg36ec7f0
+ pkgver = 0.2.rgb9bfe32
pkgrel = 1
url = http://github.com/inAudible-NG/audible-activator
arch = any
@@ -10,9 +10,9 @@ pkgbase = audible-activator-git
depends = python2-selenium
depends = python2-urllib3
depends = chromium
- provides = audible-activator=0.2.rg36ec7f0
+ provides = audible-activator=0.2.rgb9bfe32
conflicts = audible-activator
- replaces = audible-activator<=0.2.rg36ec7f0
+ replaces = audible-activator<=0.2.rgb9bfe32
source = audible-activator::git+https://github.com/inAudible-NG/audible-activator
source = audible-activator.chromedriverpath.patch
source = audible-activator.sh
diff --git a/PKGBUILD b/PKGBUILD
index 13855764bd56..e20a25c532ce 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname='audible-activator'
pkgname="${_pkgname}-git"
-pkgver=0.2.rg36ec7f0
+pkgver=0.2.rgb9bfe32
pkgrel=1
pkgdesc="A script to retrieve your activation data (activation_bytes) from Audible servers. Use it to play your aax or aax+ files downloaded from amazon audible. Needs chrome or chromium."
url='http://github.com/inAudible-NG/audible-activator'
@@ -66,13 +66,13 @@ pkgver() {
_rev="$(git ls-remote | head -n1 | head -c7)"
if [ -z "${_ver}" ]; then
- echo "$0: Error: Could not determine version." > /dev/stderr
+ echo "$0: Error: Could not determine version." >&2
false
return 1
fi
if [ -z "${_rev}" ]; then
- echo "$0: Error: Could not determine SVN revision." > /dev/stderr
+ echo "$0: Error: Could not determine SVN revision." >&2
false
return 1
else