From f9aa029a8b5b9dd93b4af56c995337bd853dc5c0 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Wed, 17 Aug 2016 18:11:17 -0400 Subject: [PATCH] host.vim: s:GetManifestPath(): octal permissions --- runtime/autoload/remote/host.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/autoload/remote/host.vim b/runtime/autoload/remote/host.vim index 3c70101966..5948de2b3d 100644 --- a/runtime/autoload/remote/host.vim +++ b/runtime/autoload/remote/host.vim @@ -134,7 +134,7 @@ function! s:GetManifestPath() abort let dest = fnamemodify(expand(dest), ':p') if !empty(dest) && !filereadable(dest) let dest .= ('/' ==# dest[-1:] ? '' : '/') . 'nvim' - call mkdir(dest, 'p', 700) + call mkdir(dest, 'p', 0700) let manifest_base = dest endif