Skip to content

Commit

Permalink
allow BUILD_REMOTE_TAG to be specified
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-willm committed Mar 27, 2024
1 parent b28c150 commit d3240b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ BUILD_REPO_NAME := labkey/$(BUILD_DISTRIBUTION)
BUILD_REMOTE_REPO := $(BUILD_REPO_URI)/$(BUILD_REPO_NAME)

BUILD_LOCAL_TAG ?= $(BUILD_REPO_NAME):$(BUILD_VERSION)
BUILD_REMOTE_TAG := $(BUILD_REMOTE_REPO):$(BUILD_VERSION)
BUILD_REMOTE_TAG ?= $(BUILD_REMOTE_REPO):$(BUILD_VERSION)

ifeq (1,$(DEBUG))
BUILD_LOCAL_TAG := $(addsuffix -debug,$(BUILD_LOCAL_TAG))
BUILD_REMOTE_TAG := $(addsuffix -debug,$(BUILD_REMOTE_TAG))
BUILD_REMOTE_TAG ?= $(addsuffix -debug,$(BUILD_REMOTE_TAG))
endif

define tc
Expand Down

0 comments on commit d3240b0

Please sign in to comment.