Skip to content

Commit

Permalink
Remove the HH-MM suffix from the build date suffix.
Browse files Browse the repository at this point in the history
It was useful when working out several kinks when
testing automated image uploading when retrying was
necessary, but now it is making things much too messy.

MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
  • Loading branch information
gjb authored and gjb committed Jul 1, 2015
1 parent e45cf9c commit 08adf5e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion release/Makefile.azure
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ AZURE${VAR}!= grep -E ^AZURE${VAR} ${AZURE_UPLOAD_CONF} | awk -F' ' '{print $$2}
.endif

.if ${BRANCH} == "STABLE" || ${BRANCH} == "CURRENT" || ${BRANCH} == "PRERELEASE"
SNAPSHOT_DATE!= date +-%Y-%m-%d-%H-%M
SNAPSHOT_DATE!= date +-%Y-%m-%d
.endif

AZURE_TARGET:= ${OSRELEASE}${SNAPSHOT_DATE}.vhd
Expand Down
2 changes: 1 addition & 1 deletion release/Makefile.ec2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

.if ${BRANCH} == "CURRENT" || ${BRANCH} == "STABLE" || ${BRANCH} == "PRERELEASE"
AMINAMESUFFIX!= date +-%Y-%m-%d-%H-%M
AMINAMESUFFIX!= date +-%Y-%m-%d
.endif
.if defined(EC2PUBLIC)
PUBLISH= --public
Expand Down
2 changes: 1 addition & 1 deletion release/Makefile.gce
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ CLEANFILES+= ${GCE_UPLOAD_TGTS}
GCE_BUCKET?=

.if ${BRANCH} == "STABLE" || ${BRANCH} == "CURRENT" || ${BRANCH} == "PRERELEASE"
SNAPSHOT_DATE!= date +-%Y-%m-%d-%H-%M
SNAPSHOT_DATE!= date +-%Y-%m-%d
.endif

# Really? Uppercase characters are not allowed? Sigh...
Expand Down
2 changes: 1 addition & 1 deletion release/Makefile.vagrant
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ATLAS${VAR}:= ${VAGRANT${VAR}}
.endif

.if ${BRANCH} == "STABLE" || ${BRANCH} == "CURRENT" || ${BRANCH} == "PRERELEASE"
SNAPSHOT_DATE!= date +-%Y-%m-%d-%H-%M
SNAPSHOT_DATE!= date +-%Y-%m-%d
.endif

VAGRANT_VERSION?= ${REVISION}-${BRANCH}${SNAPSHOT_DATE}
Expand Down

0 comments on commit 08adf5e

Please sign in to comment.