Skip to content

Commit 49c303f

Browse files
committed
Merge pull request #73 from arschles/vendor-env
fix(Makefile): set GO15VENDOREXPERIMENT in the build container
2 parents 5faceaa + c6456b4 commit 49c303f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export GO15VENDOREXPERIMENT=1
77
REPO_PATH := github.com/deis/${SHORT_NAME}
88
DEV_ENV_IMAGE := quay.io/deis/go-dev:0.3.0
99
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
10-
DEV_ENV_PREFIX := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}
10+
DEV_ENV_PREFIX := docker run --rm -e GO15VENDOREXPERIMENT=1 -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}
1111
DEV_ENV_CMD := ${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE}
1212

1313
# SemVer with build information is defined in the SemVer 2 spec, but Docker

0 commit comments

Comments
 (0)