From 9b7d84987982404f0d1b227e91be4519c19625f4 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Fri, 23 May 2025 14:59:20 +0300 Subject: [PATCH] Fix taplo artifact naming (#31267) Part of https://github.com/zed-industries/zed/issues/31261 https://github.com/tamasfe/taplo/pull/598#issuecomment-2292984164 renamed all artifacts almost a year ago, and now had released it finally. Have to abide to that YOLO move. Release Notes: - N/A --- extensions/toml/src/toml.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/toml/src/toml.rs b/extensions/toml/src/toml.rs index 66057904b7..20f27b6d97 100644 --- a/extensions/toml/src/toml.rs +++ b/extensions/toml/src/toml.rs @@ -62,7 +62,7 @@ impl TomlExtension { let (platform, arch) = zed::current_platform(); let asset_name = format!( - "taplo-full-{os}-{arch}.gz", + "taplo-{os}-{arch}.gz", arch = match arch { zed::Architecture::Aarch64 => "aarch64", zed::Architecture::X86 => "x86",