Skip to content

Commit

Permalink
ComposeUp#isMac() now performs case insensitive match
Browse files Browse the repository at this point in the history
  • Loading branch information
Petter Remen committed May 26, 2016
1 parent 0354e14 commit cfd3d90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,6 @@ class ComposeUp extends DefaultTask {
}

private static boolean isMac() {
System.getProperty("os.name").startsWith("Mac")
System.getProperty("os.name").toLowerCase().startsWith("mac")
}
}

0 comments on commit cfd3d90

Please sign in to comment.