diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-01-28 13:16:33 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-01-28 13:16:33 +0100 |
commit | 8821579baa9d779335cd2c2331336acd8d74b9d7 (patch) | |
tree | 2fb27a1f044907e82bd0497e479e4aabe430c55d | |
parent | 6f4c4be95288f83247c43e8c71218266019823ec (diff) | |
download | rneovim-8821579baa9d779335cd2c2331336acd8d74b9d7.tar.gz rneovim-8821579baa9d779335cd2c2331336acd8d74b9d7.tar.bz2 rneovim-8821579baa9d779335cd2c2331336acd8d74b9d7.zip |
test/old: $TMPDIR must be absolute
Internals `chdir` here and there, this causes relative $TMPDIR to break
some things. Don't know why this only happened on macOS...
-rw-r--r-- | src/nvim/testdir/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 5a6e03f182..b945b29683 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -11,7 +11,7 @@ SCRIPTSOURCE := ../../../runtime export SHELL := sh export NVIM_PRG := $(NVIM_PRG) -export TMPDIR := Xtest-tmpdir +export TMPDIR := $(abspath ../../../Xtest-tmpdir) SCRIPTS_DEFAULT = \ test14.out \ |