Reintroduce check for go before including bingo Makefile
This re-adds the check for go being installed before including the bingo variables make file to avoid repeating errors about missing a missing go binary when running 'make node-generate' in the ci (the node container doesn't have go installed)
This commit is contained in:
@@ -7,7 +7,9 @@ ifdef ENABLE_VIPS
|
|||||||
TAGS := ${TAGS},enable_vips
|
TAGS := ${TAGS},enable_vips
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../.bingo/Variables.mk
|
include ../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
include ../.make/default.mk
|
include ../.make/default.mk
|
||||||
include ../.make/recursion.mk
|
include ../.make/recursion.mk
|
||||||
include ../.make/go.mk
|
include ../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := pkg
|
NAME := pkg
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../.bingo/Variables.mk
|
include ../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
include ../.make/default.mk
|
include ../.make/default.mk
|
||||||
include ../.make/recursion.mk
|
include ../.make/recursion.mk
|
||||||
include ../.make/go.mk
|
include ../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := protogen
|
NAME := protogen
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../.bingo/Variables.mk
|
include ../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
include ../.make/default.mk
|
include ../.make/default.mk
|
||||||
include ../.make/recursion.mk
|
include ../.make/recursion.mk
|
||||||
include ../.make/generate.mk
|
include ../.make/generate.mk
|
||||||
|
|||||||
@@ -3,7 +3,10 @@ NAME := activitylog
|
|||||||
OUTPUT_DIR = ./pkg/service/l10n
|
OUTPUT_DIR = ./pkg/service/l10n
|
||||||
TEMPLATE_FILE = ./pkg/service/l10n/activitylog.pot
|
TEMPLATE_FILE = ./pkg/service/l10n/activitylog.pot
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := antivirus
|
NAME := antivirus
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := app-provider
|
NAME := app-provider
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := app-registry
|
NAME := app-registry
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := audit
|
NAME := audit
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := auth-app
|
NAME := auth-app
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := auth-basic
|
NAME := auth-basic
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := auth-bearer
|
NAME := auth-bearer
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := auth-machine
|
NAME := auth-machine
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := auth-service
|
NAME := auth-service
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := clientlog
|
NAME := clientlog
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := collaboration
|
NAME := collaboration
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := eventhistory
|
NAME := eventhistory
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := frontend
|
NAME := frontend
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := gateway
|
NAME := gateway
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -3,7 +3,10 @@ NAME := graph
|
|||||||
OUTPUT_DIR = ./pkg/l10n
|
OUTPUT_DIR = ./pkg/l10n
|
||||||
TEMPLATE_FILE = ./pkg/l10n/graph.pot
|
TEMPLATE_FILE = ./pkg/l10n/graph.pot
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := groups
|
NAME := groups
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -2,7 +2,10 @@ SHELL := bash
|
|||||||
NAME := idm
|
NAME := idm
|
||||||
TAGS := disable_crypt
|
TAGS := disable_crypt
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := idp
|
NAME := idp
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := invitations
|
NAME := invitations
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := nats
|
NAME := nats
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -3,7 +3,10 @@ NAME := notifications
|
|||||||
OUTPUT_DIR = ./pkg/email/l10n
|
OUTPUT_DIR = ./pkg/email/l10n
|
||||||
TEMPLATE_FILE = ./pkg/email/l10n/notifications.pot
|
TEMPLATE_FILE = ./pkg/email/l10n/notifications.pot
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := ocdav
|
NAME := ocdav
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := ocm
|
NAME := ocm
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := ocs
|
NAME := ocs
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := policies
|
NAME := policies
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := postprocessing
|
NAME := postprocessing
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := proxy
|
NAME := proxy
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := search
|
NAME := search
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -3,7 +3,10 @@ NAME := settings
|
|||||||
OUTPUT_DIR = ./pkg/service/v0/l10n
|
OUTPUT_DIR = ./pkg/service/v0/l10n
|
||||||
TEMPLATE_FILE = ./pkg/service/v0/l10n/settings.pot
|
TEMPLATE_FILE = ./pkg/service/v0/l10n/settings.pot
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := sharing
|
NAME := sharing
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := sse
|
NAME := sse
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := storage-publiclink
|
NAME := storage-publiclink
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := storage-shares
|
NAME := storage-shares
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := storage-system
|
NAME := storage-system
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := storage-users
|
NAME := storage-users
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := thumbnails
|
NAME := thumbnails
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -3,7 +3,10 @@ NAME := userlog
|
|||||||
OUTPUT_DIR = ./pkg/service/l10n
|
OUTPUT_DIR = ./pkg/service/l10n
|
||||||
TEMPLATE_FILE = ./pkg/service/l10n/userlog.pot
|
TEMPLATE_FILE = ./pkg/service/l10n/userlog.pot
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := users
|
NAME := users
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -3,7 +3,10 @@ NAME := web
|
|||||||
WEB_ASSETS_VERSION = v1.0.0
|
WEB_ASSETS_VERSION = v1.0.0
|
||||||
WEB_ASSETS_BRANCH = main
|
WEB_ASSETS_BRANCH = main
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := webdav
|
NAME := webdav
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
SHELL := bash
|
SHELL := bash
|
||||||
NAME := webfinger
|
NAME := webfinger
|
||||||
|
|
||||||
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
||||||
include ../../.bingo/Variables.mk
|
include ../../.bingo/Variables.mk
|
||||||
|
endif
|
||||||
|
|
||||||
include ../../.make/default.mk
|
include ../../.make/default.mk
|
||||||
include ../../.make/recursion.mk
|
include ../../.make/recursion.mk
|
||||||
include ../../.make/go.mk
|
include ../../.make/go.mk
|
||||||
|
|||||||
Reference in New Issue
Block a user