diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-11-20 05:48:03 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-11-20 05:48:03 +0100 |
commit | 0a94bb8379ab485b0e58bdbaf9d969362f4b1efc (patch) | |
tree | aba74020aa4ebc05afddcdbbd16151d908ae3417 /python2-numpydoc/watch | |
parent | watch fix for qtsixa (diff) | |
download | aur-packages-0a94bb8379ab485b0e58bdbaf9d969362f4b1efc.tar.gz aur-packages-0a94bb8379ab485b0e58bdbaf9d969362f4b1efc.tar.bz2 aur-packages-0a94bb8379ab485b0e58bdbaf9d969362f4b1efc.tar.xz |
due not notify about a package being unfetchable twice, now that running this is automated.
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'python2-numpydoc/watch')
-rwxr-xr-x | python2-numpydoc/watch | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python2-numpydoc/watch b/python2-numpydoc/watch index a7dace9..e10f310 100755 --- a/python2-numpydoc/watch +++ b/python2-numpydoc/watch @@ -2,6 +2,7 @@ wget http://pypi.python.org/packages/source/n/numpydoc/ >/dev/null 2>/dev/null if [ $? = 0 ]; then + [ -f unfetchable ] && rm unfetchable grep numpydoc- < index.html | md5sum > new-sum touch sum if [ "$(cat sum)" = "$(cat new-sum)" ]; then @@ -11,7 +12,8 @@ if [ $? = 0 ]; then echo 'python2-numpydoc' fi rm index.html -else +elif [ ! -f unfetchable ] + touch unfetchable echo 'python2-numpydoc (unfetchable)' fi |