Merge pull request #228 from seemethere/wrap_pwd

Fix mounts for directories with weird chars
This commit is contained in:
Vincent Demeester 2017-06-22 09:59:41 +02:00 committed by GitHub
commit 53ac8bbed8
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
DEV_DOCKER_IMAGE_NAME = docker-cli-dev
LINTER_IMAGE_NAME = docker-cli-lint
CROSS_IMAGE_NAME = docker-cli-cross
MOUNTS = -v `pwd`:/go/src/github.com/docker/cli
MOUNTS = -v "$(CURDIR)":/go/src/github.com/docker/cli
VERSION = $(shell cat VERSION)
ENVVARS = -e VERSION=$(VERSION) -e GITCOMMIT