summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWouter de Vries2015-12-18 10:39:36 +0100
committerWouter de Vries2015-12-18 10:39:36 +0100
commit04aabd3169a3f679e6486456258f537efa9f1494 (patch)
tree4f63ddfbce4bfb5e30e8760070c1a034e5cf4b22
parent9003576a51849e03dea33f1efd1399b793cef0d7 (diff)
downloadaur-04aabd3169a3f679e6486456258f537efa9f1494.tar.gz
Added force to remove, to prevent an error when the pycache has not been created
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 905b3b9f41fe..83fc9440ca03 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Wed Dec 16 12:43:12 UTC 2015
+# Fri Dec 18 09:39:26 UTC 2015
pkgbase = ripe-atlas-tools
pkgdesc = The official command-line client for RIPE Atlas
pkgver = 1.2.1
- pkgrel = 1
+ pkgrel = 2
url = https://pypi.python.org/pypi/ripe.atlas.tools
arch = any
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 6405dcc1796e..ef6277b75516 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_name=ripe.atlas.tools
pkgname=ripe-atlas-tools
pkgver=1.2.1
-pkgrel=1
+pkgrel=2
pkgdesc="The official command-line client for RIPE Atlas"
arch=('any')
url="https://pypi.python.org/pypi/$_name"
@@ -17,5 +17,5 @@ md5sums=('47882407a8264456106d8493f20eaf2a')
package() {
cd "$srcdir/$_name-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 || return 1
- rm -r "ripe/__pycache__" "ripe/atlas/__pycache__"
+ rm -rf "ripe/__pycache__" "ripe/atlas/__pycache__"
}