diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-12 23:17:09 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-12 23:17:09 +0100 |
commit | 7287943473c42b7313099736c18c01b6d626757b (patch) | |
tree | c9f407c85d1d458cb2e58ed026ee16c90d9e8f1f /Makefile | |
parent | 037b70368264ee5b47536a0b779cefe32cdd9479 (diff) | |
download | ale-7287943473c42b7313099736c18c01b6d626757b.zip |
Add ALE to the Vim runtimepath in the Docker image so it can run tests.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |