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
1 changed files with 1 additions and 1 deletions

View File

@ -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 $@)