From 148182812545940da218eea5b8f64663f363c3f3 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Thu, 4 Sep 2014 07:09:54 -0700 Subject: [PATCH] dashboard/env: restore the periods after docker build They're required but adg wanted them removed and I listened :) TBR=adg R=adg CC=golang-codereviews https://golang.org/cl/136200043 --- dashboard/env/linux-x86-base/Makefile | 2 +- dashboard/env/linux-x86-nacl/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/env/linux-x86-base/Makefile b/dashboard/env/linux-x86-base/Makefile index 61ed8a86667..4286d210b5d 100644 --- a/dashboard/env/linux-x86-base/Makefile +++ b/dashboard/env/linux-x86-base/Makefile @@ -3,7 +3,7 @@ # license that can be found in the LICENSE file. docker: Dockerfile - docker build -t gobuilders/linux-x86-base + docker build -t gobuilders/linux-x86-base . docker-linux.base.tar.gz: docker docker save gobuilders/linux-x86-base | gzip | (cd ../../coordinator/buildongce && go run create.go --write_object=go-builder-data/docker-linux.base.tar.gz) diff --git a/dashboard/env/linux-x86-nacl/Makefile b/dashboard/env/linux-x86-nacl/Makefile index 355cdf8d98b..738ca806d3d 100644 --- a/dashboard/env/linux-x86-nacl/Makefile +++ b/dashboard/env/linux-x86-nacl/Makefile @@ -3,7 +3,7 @@ # license that can be found in the LICENSE file. docker: Dockerfile - docker build -t gobuilders/linux-x86-nacl + docker build -t gobuilders/linux-x86-nacl . upload: docker docker save gobuilders/linux-x86-nacl | gzip | (cd ../../coordinator/buildongce && go run create.go --write_object=go-builder-data/docker-linux.nacl.tar.gz)