diff options
author | techknowlogick <techknowlogick@gitea.io> | 2021-05-26 18:03:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 18:03:39 -0400 |
commit | 568fe8c595eea84eb3e3a49839df80686fc5d640 (patch) | |
tree | 399ca2c66deea986c7ef0e6f6dfc87e07a619630 /docs/Makefile | |
parent | d1dbbf43b078f3b162c1ba0939d0e04363b844b5 (diff) | |
download | gitea-568fe8c595eea84eb3e3a49839df80686fc5d640.tar.gz gitea-568fe8c595eea84eb3e3a49839df80686fc5d640.zip |
follow redirect when fetching theme archive (#15986)
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 2 |
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 $@) |