diff options
author | Prashanth Chandra <coolshanth94@gmail.com> | 2016-10-12 19:25:53 +0800 |
---|---|---|
committer | Prashanth Chandra <coolshanth94@gmail.com> | 2016-10-12 20:13:34 +0800 |
commit | 9a0a663dc15c1926cefe582c2dfc7e519b33fc1a (patch) | |
tree | 6167f203d9d5f239e40efa670c0b39475abf59a6 /Makefile | |
parent | 210d464442eb16c4450816307b5f52c7c6994913 (diff) | |
download | ale-9a0a663dc15c1926cefe582c2dfc7e519b33fc1a.zip |
Move vint to Docker
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -7,8 +7,11 @@ test-setup: test: test-setup vims=$$(docker run --rm $(IMAGE) ls /vim-build/bin | grep -E '^n?vim'); \ if [ -z "$$vims" ]; then echo "No Vims found!"; exit 1; fi; \ + EXIT=0; \ for vim in $$vims; do \ - $(DOCKER) $$vim '+Vader! test/*'; \ - done + $(DOCKER) $$vim '+Vader! test/*' || EXIT=$$?; \ + done; \ + $(DOCKER) vint -s /testplugin || EXIT=$$?; \ + exit $$EXIT; .PHONY: test-setup test |