aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-core/managers/std
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-06-28 19:26:23 +0200
committerGitHub <noreply@github.com>2023-06-28 19:26:23 +0200
commit758ac5b35e823eee74a90f855b2a66afc51ec92d (patch)
tree100dc05b4b2e337960167cf5f8c9a94b79420f59 /lua/mason-core/managers/std
parentchore(ci): add nvim v0.9.1 to test matrix (#1378) (diff)
downloadmason-758ac5b35e823eee74a90f855b2a66afc51ec92d.tar
mason-758ac5b35e823eee74a90f855b2a66afc51ec92d.tar.gz
mason-758ac5b35e823eee74a90f855b2a66afc51ec92d.tar.bz2
mason-758ac5b35e823eee74a90f855b2a66afc51ec92d.tar.lz
mason-758ac5b35e823eee74a90f855b2a66afc51ec92d.tar.xz
mason-758ac5b35e823eee74a90f855b2a66afc51ec92d.tar.zst
mason-758ac5b35e823eee74a90f855b2a66afc51ec92d.zip
feat(installer): write more installation output to stdout (#1376)
This should give better insights into the installation progress.
Diffstat (limited to 'lua/mason-core/managers/std')
-rw-r--r--lua/mason-core/managers/std/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/mason-core/managers/std/init.lua b/lua/mason-core/managers/std/init.lua
index eb7db9bb..b3116d7a 100644
--- a/lua/mason-core/managers/std/init.lua
+++ b/lua/mason-core/managers/std/init.lua
@@ -40,7 +40,7 @@ end
---@param out_file string
function M.download_file(url, out_file)
local ctx = installer.context()
- ctx.stdio_sink.stdout(("Downloading file %q...\n"):format(url))
+ ctx.stdio_sink.stdout(("Downloading file %q…\n"):format(url))
fetch(url, {
out_file = path.concat { ctx.cwd:get(), out_file },
})