Skip to content

Commit

Permalink
🐞fix: 'git pull dotfiles'
Browse files Browse the repository at this point in the history
  • Loading branch information
utubo committed Dec 5, 2024
1 parent b416c45 commit d610435
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vim/autoload/vimrc/lazyload.vim
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const a = has('win32') ? '~/_vimrc' : '~/.vimrc'
const b = a->expand()->resolve()->fnamemodify(':h')
const c = getcwd()
exe 'cd' b
ec system($'git pull {b}')
ec system($'git pull')
exe 'cd' c
exe $'source {has('win32') ? '~/vimfiles' : '~/.vim'}/autoload/vimrc/ezpack.vim'
EzpackInstall
Expand Down
2 changes: 1 addition & 1 deletion src/.vim/autoload/vimrc/lazyload.src.vim
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def PullDotfiles()
const dotfilespath = vimrcpath->expand()->resolve()->fnamemodify(':h')
const cwd = getcwd()
execute 'cd' dotfilespath
echo system($'git pull {dotfilespath}')
echo system($'git pull')
execute 'cd' cwd
execute $'source {has('win32') ? '~/vimfiles' : '~/.vim'}/autoload/vimrc/ezpack.vim'
EzpackInstall
Expand Down

0 comments on commit d610435

Please sign in to comment.