aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-08-17 18:11:17 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-08-17 18:30:09 -0400
commitf9aa029a8b5b9dd93b4af56c995337bd853dc5c0 (patch)
tree6ccd93de430fd39162e257a370656a9aeaa66b6e
parentacaf480bdcd5f3e8562fd78cd94850f4eb83ec57 (diff)
downloadrneovim-f9aa029a8b5b9dd93b4af56c995337bd853dc5c0.tar.gz
rneovim-f9aa029a8b5b9dd93b4af56c995337bd853dc5c0.tar.bz2
rneovim-f9aa029a8b5b9dd93b4af56c995337bd853dc5c0.zip
host.vim: s:GetManifestPath(): octal permissions
-rw-r--r--runtime/autoload/remote/host.vim2
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