> Path path = new File(buildPathStartingFromBaseDir(container)).toPath();
> - Set<PosixFilePermission> permissions;
> - try {
> - permissions = getPosixFilePermissions(path);
> - } catch (IOException ioe) {
> - throw Throwables.propagate(ioe);
> +
> + if ( System.getProperty("os.name",
> "").toLowerCase().contains("windows") ) {
Extract this to a method in the
[TestUtils](https://github.com/jclouds/jclouds/blob/master/core/src/test/java/org/jclouds/utils/TestUtils.java)
class, similar to what we already do with OSX.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/733/files#r28964697