summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechknowlogick <techknowlogick@gitea.io>2021-05-26 21:05:24 -0400
committerGitHub <noreply@github.com>2021-05-26 21:05:24 -0400
commitd95489b7edaf4330839d60ab9244aa0d4682e037 (patch)
tree03d21f760e5210527abe6d3ee5417c0bb5bdec02
parenta9e1a37b71de64b65253df3b0202ee654c8c1182 (diff)
downloadgitea-d95489b7edaf4330839d60ab9244aa0d4682e037.tar.gz
gitea-d95489b7edaf4330839d60ab9244aa0d4682e037.zip
follow redirect when fetching theme archive (#15986) (#15990)
-rw-r--r--docs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 487e16cf6f..68afe03e75 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -31,4 +31,4 @@ update: $(THEME)
$(THEME): $(THEME)/theme.toml
$(THEME)/theme.toml:
mkdir -p $$(dirname $@)
- curl -s $(ARCHIVE) | tar xz -C $$(dirname $@)
+ curl -L -s $(ARCHIVE) | tar xz -C $$(dirname $@)