summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter/install.lua
diff options
context:
space:
mode:
authorRasmus Michelsen <RMichelsen@protonmail.com>2020-09-18 20:44:09 +0200
committerStephan Seitz <stephan.lauf@yahoo.de>2020-09-18 22:35:45 +0200
commit2624c00b377cab082171ad70ca13c1d67d8a93d8 (patch)
treef9062e15579215c3c47a7281b634fec8c64436e0 /lua/nvim-treesitter/install.lua
parent3652bed53e971a1c5b51d557d741652e55ba7dd7 (diff)
Ensure that updated files are replaced w/o warning
Diffstat (limited to 'lua/nvim-treesitter/install.lua')
-rw-r--r--lua/nvim-treesitter/install.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/install.lua b/lua/nvim-treesitter/install.lua
index 4c52fd41..0cc9806e 100644
--- a/lua/nvim-treesitter/install.lua
+++ b/lua/nvim-treesitter/install.lua
@@ -104,7 +104,7 @@ local function select_mv_cmd(compile_location, parser_lib_name)
return {
cmd = 'cmd',
opts = {
- args = { '/C', 'move', compile_location..'\\parser.so', parser_lib_name },
+ args = { '/C', 'move', '/Y', compile_location..'\\parser.so', parser_lib_name },
}
}
else