Skip to content

Commit

Permalink
Pull oC logo and favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasHirt committed Oct 15, 2020
1 parent 5e92e73 commit 1523767
Show file tree
Hide file tree
Showing 2 changed files with 126 additions and 843 deletions.
10 changes: 9 additions & 1 deletion konnectd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ GENERATE ?= $(PACKAGES)

TAGS ?=

# Assets
LOGO_URL = https://raw.githubusercontent.com/owncloud/assets/main/logo.svg
FAVICON_URL = https://raw.githubusercontent.com/owncloud/assets/main/favicon.ico

ifndef OUTPUT
ifneq ($(DRONE_TAG),)
OUTPUT ?= $(subst v,,$(DRONE_TAG))
Expand Down Expand Up @@ -77,9 +81,13 @@ lint:
for PKG in $(PACKAGES); do go run golang.org/x/lint/golint -set_exit_status $$PKG || exit 1; done;

.PHONY: generate
generate:
generate: assets
go generate $(GENERATE)

assets:
curl -o assets/identifier/static/logo.svg ${LOGO_URL}
curl -o assets/identifier/static/favicon.ico ${LOGO_URL}

.PHONY: changelog
changelog:
go run github.com/restic/calens >| CHANGELOG.md
Expand Down
Loading

0 comments on commit 1523767

Please sign in to comment.