diff options
author | Sastry Isukapalli <sastry@research.att.com> | 2018-03-24 02:16:50 -0400 |
---|---|---|
committer | Sastry Isukapalli <sastry@research.att.com> | 2018-03-24 02:17:27 -0400 |
commit | 53b90c3fc5d8a187b1a35992b039a8291a321fc4 (patch) | |
tree | d38077ec62ae8d4b703775cd24e4b9fd89bad692 /docker/build_image.sh | |
parent | b211c1919e8c04974ba8ab26ec63d34be3826e19 (diff) |
Fix bug in docker build script
Fixed a spurios typo in date command
Issue-ID: OPTFRA-22
Change-Id: I4a9b02f52d07bba2091b95ab201c9fc0b252f971
Signed-off-by: Sastry Isukapalli <sastry@research.att.com>
Diffstat (limited to 'docker/build_image.sh')
-rwxr-xr-x | docker/build_image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/build_image.sh b/docker/build_image.sh index 8f05866..b20e597 100755 --- a/docker/build_image.sh +++ b/docker/build_image.sh @@ -25,7 +25,7 @@ IMAGE_NAME=$DOCKER_REPOSITORY/$ORG/$PROJECT # Version properties source version.properties VERSION=$release_version -STAGING=${release_version}-SNAPSHOT-$(date -u +date -u '+%Y%m%dT%H%M%SZ') +STAGING=${release_version}-SNAPSHOT-$(date -u '+%Y%m%dT%H%M%SZ') function log_ts() { # Log message with timestamp echo [DEBUG LOG at $(date -u +%Y%m%d:%H%M%S)] "$@" |