diff options
| author | William Boman <william@redwill.se> | 2022-09-08 15:19:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-08 15:19:11 +0200 |
| commit | 247ca843f02c279e26c903c8744069ed14db00d3 (patch) | |
| tree | 80ed305441f9da118d4bdd05757d409d4a5b7cb9 /lua/mason-core/fs.lua | |
| parent | chore: update generated code (#394) (diff) | |
| download | mason-247ca843f02c279e26c903c8744069ed14db00d3.tar mason-247ca843f02c279e26c903c8744069ed14db00d3.tar.gz mason-247ca843f02c279e26c903c8744069ed14db00d3.tar.bz2 mason-247ca843f02c279e26c903c8744069ed14db00d3.tar.lz mason-247ca843f02c279e26c903c8744069ed14db00d3.tar.xz mason-247ca843f02c279e26c903c8744069ed14db00d3.tar.zst mason-247ca843f02c279e26c903c8744069ed14db00d3.zip | |
chore: bump stylua to 0.14.3 (#395)
Diffstat (limited to 'lua/mason-core/fs.lua')
| -rw-r--r-- | lua/mason-core/fs.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lua/mason-core/fs.lua b/lua/mason-core/fs.lua index 820b938a..98d04a99 100644 --- a/lua/mason-core/fs.lua +++ b/lua/mason-core/fs.lua @@ -39,9 +39,10 @@ local function make_module(uv) function M.rmrf(path) assert( Path.is_subdirectory(settings.current.install_root_dir, path), - ( - "Refusing to rmrf %q which is outside of the allowed boundary %q. Please report this error at https://github.com/williamboman/mason.nvim/issues/new" - ):format(path, settings.current.install_root_dir) + ("Refusing to rmrf %q which is outside of the allowed boundary %q. Please report this error at https://github.com/williamboman/mason.nvim/issues/new"):format( + path, + settings.current.install_root_dir + ) ) log.debug("fs: rmrf", path) if vim.in_fast_event() then |
