This repository was archived by the owner on Oct 13, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ ARCH=$(shell uname -m)
22BUILDTIME =$(shell date -u -d "@$${SOURCE_DATE_EPOCH:-$$(date +%s ) }" --rfc-3339 ns 2> /dev/null | sed -e 's/ /T/')
33DEFAULT_PRODUCT_LICENSE: =Community Engine
44DOCKER_GITCOMMIT: =abcdefg
5- GO_VERSION: =1.12.12
5+ GO_VERSION: =1.12.15
66PLATFORM =Docker Engine - Community
77SHELL: =/bin/bash
88VERSION? =0.0.0-dev
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ origVersion=$VERSION
77[[ $# < 2 ]] && echo ' not enough args' && exit 1
88
99DATE_COMMAND=" date"
10- if [[ $( uname) -eq " Darwin" ]]; then
10+ if [[ $( uname) == " Darwin" ]]; then
1111 DATE_COMMAND=" docker run --rm alpine date"
1212fi
1313
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ VERSION=$2
66[[ $# < 2 ]] && echo ' not enough args' && exit 1
77
88DATE_COMMAND=" date"
9- if [[ $( uname) -eq " Darwin" ]]; then
9+ if [[ $( uname) == " Darwin" ]]; then
1010 DATE_COMMAND=" docker run --rm alpine date"
1111fi
1212
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if [ -z "$ENGINE_DIR" ] || [ -z "$VERSION" ]; then
99fi
1010
1111DATE_COMMAND=" date"
12- if [[ $( uname) -eq " Darwin" ]]; then
12+ if [[ $( uname) == " Darwin" ]]; then
1313 DATE_COMMAND=" docker run --rm alpine date"
1414fi
1515GIT_COMMAND=" git -C $ENGINE_DIR "
You can’t perform that action at this time.
0 commit comments