Skip to content

Commit

Permalink
Merge pull request #154 from pixelspark/fix/date-on-macos
Browse files Browse the repository at this point in the history
fix: call date in a different way from the Makefile to fix build error on macOS
  • Loading branch information
jovandeginste committed May 26, 2024
2 parents dfa9598 + 18d9d95 commit f4fb86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ GIT_REF ?= $(shell git symbolic-ref HEAD)
GIT_REF_NAME ?= $(shell git branch --show-current)
GIT_REF_TYPE ?= branch
GIT_COMMIT ?= $(shell git rev-parse HEAD)
BUILD_TIME ?= $(shell date -u --rfc-3339=seconds)
BUILD_TIME ?= $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
OUTPUT_FILE ?= tmp/main

I18N_LANGUAGES ?= nl de fr
Expand Down

0 comments on commit f4fb86e

Please sign in to comment.