loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ensure go/bin path exists when copying hugo bin into it (#23692)

follow up of https://github.com/go-gitea/gitea/pull/23686

path does not exist during static pipeline, and fails out (example:
https://drone.gitea.io/go-gitea/gitea/70587/1/5 )

authored by

techknowlogick and committed by
GitHub
c5cfc085 023e61e6

+1 -1
+1 -1
Makefile
··· 823 823 .PHONY: deps-docs 824 824 deps-docs: 825 825 @hash hugo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ 826 - curl -sL https://github.com/gohugoio/hugo/releases/download/v$(HUGO_VERSION)/hugo_$(HUGO_VERSION)_Linux-64bit.tar.gz | tar zxf - -C /tmp && mv /tmp/hugo ~/go/bin/hugo && chmod +x ~/go/bin/hugo; \ 826 + curl -sL https://github.com/gohugoio/hugo/releases/download/v$(HUGO_VERSION)/hugo_$(HUGO_VERSION)_Linux-64bit.tar.gz | tar zxf - -C /tmp && mkdir -p ~/go/bin && mv /tmp/hugo ~/go/bin/hugo && chmod +x ~/go/bin/hugo; \ 827 827 fi 828 828 829 829 .PHONY: deps