Skip to content

Commit

Permalink
[#46] *: Reorganize variables in Makefile again
Browse files Browse the repository at this point in the history
Fix variables for docker, sorted variables' blocks

Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
  • Loading branch information
masterSplinter01 committed May 19, 2021
1 parent ab111b2 commit 137e690
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ REPO ?= $(shell go list -m)
VERSION ?= "$(shell git describe --tags 2>/dev/null || git rev-parse --short HEAD | sed 's/^v//')"
BINDIR = bin

# Variables for docker
HUB_IMAGE ?= nspccdev/neofs-s3-gw
HUB_TAG ?= "$(shell echo ${VERSION} | sed 's/^v//')"

# s3 gate variables
BIN_NAME=neofs-s3-gw
BIN = "$(BINDIR)/$(BIN_NAME)"

# Variables for docker
HUB_IMAGE ?= "nspccdev/$(BIN_NAME)"
HUB_TAG ?= "$(shell echo ${VERSION} | sed 's/^v//')"

#authmate variables
AUTHMATE_BIN_NAME=neofs-authmate
AUTHMATE_BIN = "$(BINDIR)/$(AUTHMATE_BIN_NAME)"
Expand Down

0 comments on commit 137e690

Please sign in to comment.