summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile10
-rwxr-xr-xbin/cdxget2
2 files changed, 4 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index ad7e53e..07bfa56 100644
--- a/Makefile
+++ b/Makefile
@@ -10,11 +10,7 @@ all:
$(MAKE) dat/urlkeys.mk
$(MAKE) dat/index.mk
$(MAKE) dat/git
-
-fix:
- grep -rl '<html><body><h1>503' dat | xargs rm -fv --
-
-.PHONY: all fix
+.PHONY: all
# Stage 1 ######################################################################
@@ -45,7 +41,7 @@ ifneq ($(wildcard dat/index.mk),)
dat/content-dir/%/index.wahtml:
@mkdir -p '$(@D)'
- curl -sL 'http://web.archive.org/web/$(call murl2url,$*)' > $@
+ curl -sfL 'http://web.archive.org/web/$(call murl2url,$*)' > $@
dat/content-dir/%/index.html: dat/content-dir/%/index.wahtml
< $< wayfore > $@
dat/content-dir/%/readme.txt: dat/content-dir/%/index.html
@@ -57,7 +53,7 @@ download += $(addsuffix readme.txt,$(content-dir)) $(addsuffix metadata.txt,$(co
dat/content-file/%:
@mkdir -p '$(@D)'
- curl -sL 'http://web.archive.org/web/$(call murl2url,$*)' > $@
+ curl -sfL 'http://web.archive.org/web/$(call murl2url,$*)' > $@
content-file = $(foreach u,$(filter-out %/,$(index)),dat/content-file/$(call url2murl,$(u)))
download += $(content-file)
diff --git a/bin/cdxget b/bin/cdxget
index 1d465b2..6844fa6 100755
--- a/bin/cdxget
+++ b/bin/cdxget
@@ -6,4 +6,4 @@ for arg in "$@"; do
url+="$s${arg%%=*}=$(printf '%s' "${arg#*=}"|urlencode)"
s='&'
done
-curl -sL "$url"
+curl -sfL "$url"