aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/fs.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-lsp-installer/fs.lua')
-rw-r--r--lua/nvim-lsp-installer/fs.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/fs.lua b/lua/nvim-lsp-installer/fs.lua
index ab775f4d..e6864685 100644
--- a/lua/nvim-lsp-installer/fs.lua
+++ b/lua/nvim-lsp-installer/fs.lua
@@ -19,7 +19,7 @@ end
function M.rename(path, new_path)
assert_ownership(path)
assert_ownership(new_path)
- return uv.fs_rename(path, new_path)
+ uv.fs_rename(path, new_path)
end
function M.mkdirp(path)