diff options
-rwxr-xr-x | dooble/watch | 1 | ||||
-rwxr-xr-x | pony/watch | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/dooble/watch b/dooble/watch index 8f1968d..4547d52 100755 --- a/dooble/watch +++ b/dooble/watch @@ -3,6 +3,7 @@ wget http://dooble.sourceforge.net/ >/dev/null 2>/dev/null if [ $? = 0 ]; then grep Release < index.html | md5sum > new-sum + touch sum if [ "$(cat sum)" = "$(cat new-sum)" ]; then rm new-sum else @@ -3,6 +3,7 @@ wget http://hackage.haskell.org/package/pony >/dev/null 2>/dev/null if [ $? = 0 ]; then md5sum < pony > new-sum + touch sum if [ "$(cat sum)" = "$(cat new-sum)" ]; then rm new-sum else |