diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-08-17 18:11:17 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-08-17 18:30:09 -0400 |
commit | f9aa029a8b5b9dd93b4af56c995337bd853dc5c0 (patch) | |
tree | 6ccd93de430fd39162e257a370656a9aeaa66b6e | |
parent | acaf480bdcd5f3e8562fd78cd94850f4eb83ec57 (diff) | |
download | rneovim-f9aa029a8b5b9dd93b4af56c995337bd853dc5c0.tar.gz rneovim-f9aa029a8b5b9dd93b4af56c995337bd853dc5c0.tar.bz2 rneovim-f9aa029a8b5b9dd93b4af56c995337bd853dc5c0.zip |
host.vim: s:GetManifestPath(): octal permissions
-rw-r--r-- | runtime/autoload/remote/host.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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 |