summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2016-10-12 23:17:09 +0100
committerw0rp <devw0rp@gmail.com>2016-10-12 23:17:09 +0100
commit7287943473c42b7313099736c18c01b6d626757b (patch)
treec9f407c85d1d458cb2e58ed026ee16c90d9e8f1f /Makefile
parent037b70368264ee5b47536a0b779cefe32cdd9479 (diff)
downloadale-7287943473c42b7313099736c18c01b6d626757b.zip
Add ALE to the Vim runtimepath in the Docker image so it can run tests.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b0bbf3ee..5572ce7e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
IMAGE ?= w0rp/ale
-DOCKER = docker run -a stderr --rm -v $(PWD):/testplugin -v $(PWD)/test:/home "$(IMAGE)"
+DOCKER = docker run -a stderr --rm -v $(PWD):/testplugin -v $(PWD)/test:/home -v ${PWD}:/home/ale "$(IMAGE)"
test-setup:
docker images -q $(IMAGE) || docker pull $(IMAGE)