mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-15 09:50:04 -04:00
fix: add -f to mv to avoid errors when updating
This commit is contained in:
parent
0d7da3bd7d
commit
8ec9a50965
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ function M.select_mv_cmd(from, to, cwd)
|
||||||
return {
|
return {
|
||||||
cmd = "mv",
|
cmd = "mv",
|
||||||
opts = {
|
opts = {
|
||||||
args = { from, to },
|
args = { "-f", from, to },
|
||||||
cwd = cwd,
|
cwd = cwd,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue