summaryrefslogtreecommitdiffstats
path: root/get
diff options
context:
space:
mode:
Diffstat (limited to 'get')
-rwxr-xr-xget9
1 files changed, 8 insertions, 1 deletions
diff --git a/get b/get
index b5ecf46..ab432b8 100755
--- a/get
+++ b/get
@@ -1,3 +1,10 @@
#!/bin/sh
-wget 'http://rpms.famillecollet.com/rpmphp/get.php?table=packagist' -O rpmphp.json
+mv rpmphp.json.prev /tmp
+if wget 'http://rpms.famillecollet.com/rpmphp/get.php?table=packagist' -O rpmphp.json.new
+then
+ cp rpmphp.json rpmphp.json.prev && \
+ cp rpmphp.json.new rpmphp.json && \
+ echo done
+ colordiff rpmphp.json.prev rpmphp.json
+fi \ No newline at end of file