From b8a7e3552da4debb9688d435ed4cb92bd47cc1c7 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Thu, 10 Oct 2024 15:42:33 +0200 Subject: [PATCH] fix: don't fetch idp logo.svg anymore We're always using the logo from the theme now so the logo.svg is not needed anymore. --- services/idp/Makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/services/idp/Makefile b/services/idp/Makefile index 79408b171..d729ef701 100644 --- a/services/idp/Makefile +++ b/services/idp/Makefile @@ -32,18 +32,11 @@ ci-node-generate: assets .PHONY: assets assets: pnpm-build \ assets/identifier/static \ - assets/identifier/static/logo.svg \ assets/identifier/static/favicon.ico assets/identifier/static: mkdir -p assets/identifier/static -LOGO_URL = https://raw.githubusercontent.com/owncloud/assets/main/logo.svg - -.PHONY: assets/identifier/static/logo.svg # force overwrite -assets/identifier/static/logo.svg: - curl --fail -o assets/identifier/static/logo.svg ${LOGO_URL} - FAVICON_URL = https://raw.githubusercontent.com/owncloud/assets/main/favicon.ico .PHONY: assets/identifier/static/favicon.ico # force overwrite