diff options
| author | Eduardo Cuducos <cuducos@users.noreply.github.com> | 2021-08-24 16:35:38 -0400 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-09-17 21:06:36 +0200 |
| commit | de5c1dc99030189e681b2305d390a9513702b385 (patch) | |
| tree | fb5566a0d7ce203d5d486f394b6d3c262a9a3a3e /lua | |
| parent | fix(dowload): don't display curl progress (diff) | |
| download | nvim-treesitter-de5c1dc99030189e681b2305d390a9513702b385.tar nvim-treesitter-de5c1dc99030189e681b2305d390a9513702b385.tar.gz nvim-treesitter-de5c1dc99030189e681b2305d390a9513702b385.tar.bz2 nvim-treesitter-de5c1dc99030189e681b2305d390a9513702b385.tar.lz nvim-treesitter-de5c1dc99030189e681b2305d390a9513702b385.tar.xz nvim-treesitter-de5c1dc99030189e681b2305d390a9513702b385.tar.zst nvim-treesitter-de5c1dc99030189e681b2305d390a9513702b385.zip | |
Replaces curl argument: --no-progress-meter -> --silent
Fix #1748
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/shell_command_selectors.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/shell_command_selectors.lua b/lua/nvim-treesitter/shell_command_selectors.lua index 83b2dacff..fe7273962 100644 --- a/lua/nvim-treesitter/shell_command_selectors.lua +++ b/lua/nvim-treesitter/shell_command_selectors.lua @@ -142,7 +142,7 @@ function M.select_download_commands(repo, project_name, cache_folder, revision) err = "Error during download, please verify your internet connection", opts = { args = { - "--no-progress-meter", + "--silent", "-L", -- follow redirects is_github and url .. "/archive/" .. revision .. ".tar.gz" or url .. "/-/archive/" .. revision .. "/" .. project_name .. "-" .. revision .. ".tar.gz", |
