diff options
Diffstat (limited to 'checkpkgist/get')
-rwxr-xr-x | checkpkgist/get | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/checkpkgist/get b/checkpkgist/get index b5ecf46..ab432b8 100755 --- a/checkpkgist/get +++ b/checkpkgist/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 |