Skip to content

Commit 46a7433

Browse files
Update Makefile BUILD variable to work on systems that have different date implementation
1 parent 6b05e0a commit 46a7433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ BASE_PATH := $(shell pwd)
77
BUILD_PATH := $(BASE_PATH)/build
88
BIN_DIR := $(BASE_PATH)/bin
99
VERSION ?= $(shell git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/' | tr '/' '_')
10-
BUILD ?= $(shell date --utc --rfc-3339=seconds | tr ' ' 'T')
10+
BUILD ?= $(shell date --utc +%FT%T%z | tr ' ' 'T')
1111
ASSETS := static
1212

1313
# PACKAGES

0 commit comments

Comments
 (0)