diff options
| author | William Boman <william@redwill.se> | 2021-10-17 19:17:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-17 19:17:23 +0200 |
| commit | 5c1d368e7fe693b87322ba45c023da5b378feba9 (patch) | |
| tree | 2bf8868bd5e4aaaae012759afe991748316a983a /lua/nvim-lsp-installer/installers/std.lua | |
| parent | sqlls: fix cmd (diff) | |
| download | mason-5c1d368e7fe693b87322ba45c023da5b378feba9.tar mason-5c1d368e7fe693b87322ba45c023da5b378feba9.tar.gz mason-5c1d368e7fe693b87322ba45c023da5b378feba9.tar.bz2 mason-5c1d368e7fe693b87322ba45c023da5b378feba9.tar.lz mason-5c1d368e7fe693b87322ba45c023da5b378feba9.tar.xz mason-5c1d368e7fe693b87322ba45c023da5b378feba9.tar.zst mason-5c1d368e7fe693b87322ba45c023da5b378feba9.zip | |
installers/pip3: add setting for adding extra install args (#151)
Diffstat (limited to 'lua/nvim-lsp-installer/installers/std.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/installers/std.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/installers/std.lua b/lua/nvim-lsp-installer/installers/std.lua index c94cde2f..b9e6f74f 100644 --- a/lua/nvim-lsp-installer/installers/std.lua +++ b/lua/nvim-lsp-installer/installers/std.lua @@ -10,7 +10,7 @@ local M = {} function M.download_file(url, out_file) return installers.when { unix = function(server, callback, context) - context.stdio_sink.stdout(("Downloading file %q..."):format(url)) + context.stdio_sink.stdout(("Downloading file %q...\n"):format(url)) process.attempt { jobs = { process.lazy_spawn("wget", { |
