summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter/shell_command_selectors.lua
diff options
context:
space:
mode:
authorLaurence Tratt <laurie@tratt.net>2021-07-19 20:28:40 +0100
committerStephan Seitz <stephan.lauf@yahoo.de>2021-07-19 21:51:33 +0200
commit37a220526d76b256c673d0de451eb88b8e3f398a (patch)
tree534369c861f0485854b61ffe174addcc3c6cdbd1 /lua/nvim-treesitter/shell_command_selectors.lua
parent968ce80c99028d2e5a59c0e8ff69b8102b82a100 (diff)
"-z" needs to come before "-f".
Diffstat (limited to 'lua/nvim-treesitter/shell_command_selectors.lua')
-rw-r--r--lua/nvim-treesitter/shell_command_selectors.lua2
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 d2a603c8..83a07792 100644
--- a/lua/nvim-treesitter/shell_command_selectors.lua
+++ b/lua/nvim-treesitter/shell_command_selectors.lua
@@ -158,7 +158,7 @@ function M.select_download_commands(repo, project_name, cache_folder, revision)
err = "Error during tarball extraction.",
opts = {
args = {
- "-xvfz",
+ "-xvzf",
project_name .. ".tar.gz",
"-C",
project_name .. "-tmp",