Skip to content

Commit

Permalink
fixup! example/Makefile: remove writable home, use TEMPDIR
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed May 13, 2017
1 parent c604f94 commit 808dea0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion example/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ PLUGINS := test/plugins

DOCKER = docker run -ti --rm \
-v $(CURDIR):/testbed \
$(if $(TEMPDIR),-v $(TEMPDIR):$(TEMPDIR) \
-v $(CURDIR)/$(PLUGINS):/home/testbed/.vim/plugins "$(IMAGE)"
test: TEMPDIR=$(shell mktemp -d)
test: TEMPDIR:=$(shell mktemp -d)
test: test-setup
docker build -f Dockerfile.tests -t "$(IMAGE)" .
set -ex; \
Expand Down

0 comments on commit 808dea0

Please sign in to comment.