snippets: Release 0.0.5 (#13434)

Fix invalid platform name on Linux.
Related to:
https://github.com/zed-industries/zed/pull/13253#issuecomment-2185323702
Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-06-24 00:39:42 +02:00 committed by GitHub
parent 73de99bee0
commit 78bc3a9a36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -45,7 +45,7 @@ impl SnippetExtension {
},
os = match platform {
zed::Os::Mac => "apple-darwin",
zed::Os::Linux => "unknown-linux-musl",
zed::Os::Linux => "unknown-linux-gnu",
zed::Os::Windows => "pc-windows-msvc",
},
);