aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/auto_backupdir.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/plugin/auto_backupdir.vim')
-rw-r--r--vim/plugin/auto_backupdir.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/vim/plugin/auto_backupdir.vim b/vim/plugin/auto_backupdir.vim
index 17a1a646..1535c486 100644
--- a/vim/plugin/auto_backupdir.vim
+++ b/vim/plugin/auto_backupdir.vim
@@ -34,12 +34,12 @@ if !isdirectory(expand(s:backupdir))
" (Fortunately, Unix and Windows are the only OS types in the world)
elseif has('*shellescape')
if has('unix')
- silent! execute '!mkdir -m 0700 -p '
- \ . shellescape(expand(s:backupdir))
+ let l:mkdir = '!mkdir -m 0700 -p '
elseif has('win32') || has('win64')
- silent! execute '!mkdir '
- \ . shellescape(expand(s:backupdir))
+ let l:mkdir = '!mkdir '
endif
+ silent! execute l:mkdir
+ \ . shellescape(expand(s:backupdir))
endif
endif