We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 234ba21 commit a88d5aeCopy full SHA for a88d5ae
example/Makefile
@@ -7,10 +7,11 @@ DOCKER = docker run -ti --rm \
7
$(if $(TEMPDIR),-v $(TEMPDIR):$(TEMPDIR)) \
8
-v $(CURDIR)/$(PLUGINS):/home/testbed/.vim/plugins "$(IMAGE)"
9
10
-test: TEMPDIR:=$(shell mktemp -d)
+test: TEMPDIR:=$(shell mktemp -d -u)
11
test: test-setup
12
docker build -f Dockerfile.tests -t "$(IMAGE)" .
13
set -ex; \
14
+ mkdir -m 0777 $(TEMPDIR); \
15
vims="$$(docker run --rm $(IMAGE) ls /vim-build/bin | grep vim)"; \
16
if [ -z "$$vims" ]; then echo "No Vims found!"; exit 1; fi; \
17
count_vims=0; \
0 commit comments