Merge pull request #34176 from bmwiedemann/date

Allow to override build date
This commit is contained in:
Sebastiaan van Stijn 2017-07-28 17:32:29 +01:00 committed by GitHub
commit 7e4f4d15fd
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ DEFAULT_BUNDLES=(
)
VERSION=$(< ./VERSION)
! BUILDTIME=$(date --rfc-3339 ns 2> /dev/null | sed -e 's/ /T/')
! BUILDTIME=$(date -u -d "@${SOURCE_DATE_EPOCH:-$(date +%s)}" --rfc-3339 ns 2> /dev/null | sed -e 's/ /T/')
if [ "$DOCKER_GITCOMMIT" ]; then
GITCOMMIT="$DOCKER_GITCOMMIT"
elif command -v git &> /dev/null && [ -d .git ] && git rev-parse &> /dev/null; then