1
1
mirror of https://github.com/go-gitea/gitea synced 2024-09-23 12:16:06 +00:00

follow redirect when fetching theme archive (#15986) (#15990)

This commit is contained in:
techknowlogick 2021-05-26 21:05:24 -04:00 committed by GitHub
parent a9e1a37b71
commit d95489b7ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,4 +31,4 @@ update: $(THEME)
$(THEME): $(THEME)/theme.toml $(THEME): $(THEME)/theme.toml
$(THEME)/theme.toml: $(THEME)/theme.toml:
mkdir -p $$(dirname $@) mkdir -p $$(dirname $@)
curl -s $(ARCHIVE) | tar xz -C $$(dirname $@) curl -L -s $(ARCHIVE) | tar xz -C $$(dirname $@)