summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter/shell_command_selectors.lua
diff options
context:
space:
mode:
authorDaniel Bendel <daniel.bendel@gmail.com>2021-04-14 21:03:09 +0200
committerThomas Vigouroux <tomvig38@gmail.com>2021-04-15 16:56:49 +0200
commita866b808c6a0501a4abf35a934bea31f768d3f16 (patch)
tree306068a0f05038d68ef60134de7511346cca3165 /lua/nvim-treesitter/shell_command_selectors.lua
parente65049bd37038f1abbedc7c204a048087cab5f80 (diff)
removed core.symlinks=true from git call
Diffstat (limited to 'lua/nvim-treesitter/shell_command_selectors.lua')
-rw-r--r--lua/nvim-treesitter/shell_command_selectors.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/lua/nvim-treesitter/shell_command_selectors.lua b/lua/nvim-treesitter/shell_command_selectors.lua
index da99068b..6b76b344 100644
--- a/lua/nvim-treesitter/shell_command_selectors.lua
+++ b/lua/nvim-treesitter/shell_command_selectors.lua
@@ -187,7 +187,6 @@ function M.select_download_commands(repo, project_name, cache_folder, revision)
opts = {
args = {
'clone',
- '-c', 'core.symlinks=true',
'--single-branch',
'--branch', repo.branch or 'master',
repo.url,
@@ -202,7 +201,6 @@ function M.select_download_commands(repo, project_name, cache_folder, revision)
err = 'Error while checking out revision',
opts = {
args = {
- '-c', 'core.symlinks=true',
'checkout', revision
},
cwd = git_folder