> @@ -29,6 +29,11 @@
> public static final Object[][] NO_INVOCATIONS = new Object[0][0];
> public static final Object[][] SINGLE_NO_ARG_INVOCATION = { new
> Object[0] };
>
> + public static boolean isMacOSX() {
> + String osName = System.getProperty("os.name");
> + return osName.contains("OS X");
> This is the documented way to identify Mac OS from Java.
RTFM ;-) Thanks for clarifying!
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/478/files#r16134170