본문 바로가기

카테고리 없음

:SPUpdate로 업데이트가 안될때.

SpaceVim은

:SPUpdate로 업데이트한다.

 

근데 사용하면서 업데이트하다 보면, 보통 다음과 같은 에러가 난다.

Updating failed, The plugin dir is dirty

 

다음 블로그에서 해답을 찾았다.

 

How to fix the Spacevim error : Updating failed, The plugin dir is dirty

https://frantzroulet.com/blog/jekyll/update/2021/11/16/how_to_fix_the_spacevim_error_updating_failed__the_plugin_dir_is_dirty.html

 

How to fix the Spacevim error : Updating failed, The plugin dir is dirty

First, make sure that you didn’t change any file on ~/.SpaceVim/. cd ~/.SpaceVim.d/ git checkout . then, empty the repos contained in vimfiles cache: rm -rf ~/.cache/vimfiles/repos/github.com/* The error should then disappear

frantzroulet.com

 

다음 명령으로 vimfiles 캐쉬의 repos들을 다 없애고 하면 된다는 거.

rm -rf ~/.cache/vimfiles/repos/github.com/*