Skip to content

Commit

Permalink
Allow other OSes.
Browse files Browse the repository at this point in the history
Allow erlang.rs work if compiled not on Mac, Linux or Windows.
  • Loading branch information
avysk committed Dec 5, 2024
1 parent 2d48109 commit a9a0499
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mise"
version = "2024.12.0"
version = "2024.12.1"
edition = "2021"
description = "The front-end to your dev env"
authors = ["Jeff Dickey (@jdx)"]
Expand Down
5 changes: 1 addition & 4 deletions src/plugins/core/erlang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,5 @@ const ARCH: &str = "unknown";
#[cfg(macos)]
const OS: &str = "apple-darwin";

#[cfg(linux)]
const OS: &str = "unknown";

#[cfg(windows)]
#[cfg(not(macos))]
const OS: &str = "unknown";

0 comments on commit a9a0499

Please sign in to comment.