diff options
author | Imbolc <[email protected]> | 2021-06-18 23:10:20 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-06-18 16:10:20 -0400 |
commit | 149da6b603d5eb6867352140eae913e090038c2b (patch) | |
tree | 8041018213f4c9c761243c5920c01a0814e74782 | |
parent | b4446a1a2148bb2af96a20adde373451755ebbe7 (diff) |
Fix neovim installation cleanup (#460)
Got these on debian: `rm: cannot remove 'neovim/.deps/build/src/luajit/src/lib_init_dyn.o': Permission denied ...`
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,7 +126,7 @@ git clone https://github.com/neovim/neovim --depth 1 cd neovim sudo make CMAKE_BUILD_TYPE=Release install cd .. -rm -rf neovim +sudo rm -r neovim ``` or if you are on Arch you can get it from the AUR |