Skip to content

Commit

Permalink
Fix minor issues with build
Browse files Browse the repository at this point in the history
  • Loading branch information
darinkrauss committed Jan 26, 2025
1 parent fc9ed90 commit f84b2eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,3 @@ private/plugin/redwood/.gitignore

# Docker
.dockerignore
Dockerfile*
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ ifneq ($(wildcard ./version.env),)
endif

VERSION_BASE?=platform
VERSION_SHORT_COMMIT?=$(shell git rev-parse --short HEAD || echo "dev")
VERSION_FULL_COMMIT?=$(shell git rev-parse HEAD || echo "dev")
VERSION_SHORT_COMMIT?=$(shell git rev-parse --short HEAD 2> /dev/null || echo "dev")
VERSION_FULL_COMMIT?=$(shell git rev-parse HEAD 2> /dev/null || echo "dev")
VERSION_PACKAGE?=$(REPOSITORY_PACKAGE)/application

GOIMPORTS_LOCAL:=github.com/tidepool-org/platform
Expand Down

0 comments on commit f84b2eb

Please sign in to comment.