From 8973a9e032149543c4b0f9fc2ef89c0196dee67a Mon Sep 17 00:00:00 2001 From: Christoph Korn Date: Wed, 26 Feb 2014 18:49:01 +0100 Subject: [PATCH] higan.sh: Add watcher for higan (just decompress gzip) The site http://byuu.org compresses the content with gzip. uscan can not handle this. So just save the decompressed site. --- higan.sh | 2 ++ update.sh | 1 + 2 files changed, 3 insertions(+) create mode 100644 higan.sh diff --git a/higan.sh b/higan.sh new file mode 100644 index 0000000..dc3e8b8 --- /dev/null +++ b/higan.sh @@ -0,0 +1,2 @@ +#!/bin/sh +wget -q -O- "http://byuu.org/higan/" | zcat diff --git a/update.sh b/update.sh index 8f17c10..5733b4f 100644 --- a/update.sh +++ b/update.sh @@ -12,3 +12,4 @@ python tide.py > tide.html 2> tide.log python sandboxgamemaker.py > sandboxgamemaker.html 2> sandboxgamemaker.log python codeslayer.py > codeslayer.html 2> codeslayer.log python marathon.py > marathon.html 2> marathon.log +sh higan.sh > higan.html 2> higan.log