Skip to content

Commit

Permalink
Fix wrong OS attribute on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Technici4n committed Jun 20, 2024
1 parent 6f7115b commit 22b9a3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public void execute(MultipleCandidatesDetails<String> details) {
if (osName.startsWith("Linux") || osName.startsWith("LINUX")) {
osName = "linux";
} else if (osName.startsWith("Mac OS X")) {
osName = "macosx";
osName = "osx";
} else if (osName.startsWith("Windows")) {
osName = "windows";
} else {
Expand Down

0 comments on commit 22b9a3c

Please sign in to comment.