1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-11-22 08:42:32 -05:00

follow redirect when fetching theme archive (#15986)

This commit is contained in:
techknowlogick 2021-05-26 18:03:39 -04:00 committed by GitHub
parent d1dbbf43b0
commit 568fe8c595
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 $@)