Skip to content

Commit b9cb95c

Browse files
committed
remove warnings from makefile
Docker-DCO-1.1-Signed-off-by: Victor Vieux <[email protected]> (github: vieux)
1 parent fca4cf6 commit b9cb95c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
44
DOCKER_IMAGE := docker:$(GIT_BRANCH)
55
DOCKER_DOCS_IMAGE := docker-docs:$(GIT_BRANCH)
6-
DOCKER_RUN_DOCKER := docker run -rm -i -t -privileged -e TESTFLAGS -v "$(CURDIR)/bundles:/go/src/github.com/dotcloud/docker/bundles" "$(DOCKER_IMAGE)"
6+
DOCKER_RUN_DOCKER := docker run --rm -i -t --privileged -e TESTFLAGS -v "$(CURDIR)/bundles:/go/src/github.com/dotcloud/docker/bundles" "$(DOCKER_IMAGE)"
77

88
default: binary
99

@@ -17,10 +17,10 @@ cross: build
1717
$(DOCKER_RUN_DOCKER) hack/make.sh binary cross
1818

1919
docs: docs-build
20-
docker run -rm -i -t -p 8000:8000 "$(DOCKER_DOCS_IMAGE)"
20+
docker run --rm -i -t -p 8000:8000 "$(DOCKER_DOCS_IMAGE)"
2121

2222
docs-shell: docs-build
23-
docker run -rm -i -t -p 8000:8000 "$(DOCKER_DOCS_IMAGE)" bash
23+
docker run --rm -i -t -p 8000:8000 "$(DOCKER_DOCS_IMAGE)" bash
2424

2525
test: build
2626
$(DOCKER_RUN_DOCKER) hack/make.sh test test-integration

0 commit comments

Comments
 (0)