diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-03-27 19:23:42 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-03-27 19:23:42 +0100 |
commit | 806bbce38cdcf86edbe6b2d1f43ab7a752cf0631 (patch) | |
tree | fa277fd029230a44fcc43eacdcd70eeb7ad1d3a0 /dooble/watch | |
parent | update latex-beamer and its watch script (diff) | |
download | aur-packages-806bbce38cdcf86edbe6b2d1f43ab7a752cf0631.tar.gz aur-packages-806bbce38cdcf86edbe6b2d1f43ab7a752cf0631.tar.bz2 aur-packages-806bbce38cdcf86edbe6b2d1f43ab7a752cf0631.tar.xz |
update dooble
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'dooble/watch')
-rwxr-xr-x | dooble/watch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dooble/watch b/dooble/watch index ed3c5c0..103c735 100755 --- a/dooble/watch +++ b/dooble/watch @@ -1,10 +1,10 @@ #!/bin/sh [ -f 'index.html' ] && rm 'index.html' -wget http://dooble.sourceforge.net/ >/dev/null 2>/dev/null +wget http://dooble.sourceforge.net/ -O index.html >/dev/null 2>/dev/null if [ $? = 0 ]; then [ -f unfetchable ] && rm unfetchable - grep 'has been released' < index.html | md5sum > new-sum + grep 'Dooble [[:digit:]\.]\+' < index.html | md5sum > new-sum touch sum if [ "$(cat sum)" = "$(cat new-sum)" ]; then rm new-sum |