diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-11-18 23:23:18 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-11-18 23:23:24 +0100 |
commit | c11eb94130358d03db6ec833d03dc7fd0cc66f72 (patch) | |
tree | 57b3353b22757c157819f6aeb99a85c3cdc650b9 /qtsixa/watch | |
parent | adopt qtsixa (diff) | |
download | aur-packages-c11eb94130358d03db6ec833d03dc7fd0cc66f72.tar.gz aur-packages-c11eb94130358d03db6ec833d03dc7fd0cc66f72.tar.bz2 aur-packages-c11eb94130358d03db6ec833d03dc7fd0cc66f72.tar.xz |
watch fix for qtsixa
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'qtsixa/watch')
-rwxr-xr-x | qtsixa/watch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtsixa/watch b/qtsixa/watch index 40b452e..332de0c 100755 --- a/qtsixa/watch +++ b/qtsixa/watch @@ -2,7 +2,7 @@ wget http://sourceforge.net/projects/qtsixa/files/ >/dev/null 2>/dev/null if [ $? = 0 ]; then - grep QtSixA < index.html | md5sum > new-sum + grep 'title="QtSixA' < index.html | md5sum > new-sum touch sum if [ "$(cat sum)" = "$(cat new-sum)" ]; then rm new-sum |