You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The build of version 1.2.1 is failing with the following error:
checkCopyScript(io.fabric8.runsh.RunShLoaderTest) Time elapsed: 0.219 sec <<< ERROR!
java.lang.UnsupportedOperationException: null
at sun.nio.fs.WindowsFileSystemProvider.readAttributes(WindowsFileSystemProvider.java:192)
at java.nio.file.Files.readAttributes(Files.java:1737)
at java.nio.file.Files.getPosixFilePermissions(Files.java:2004)
at io.fabric8.runsh.RunShLoader.copyRunScript(RunShLoader.java:122)
at io.fabric8.runsh.RunShLoaderTest.checkCopyScript(RunShLoaderTest.java:37)
The build of version 1.2.1 is failing with the following error:
checkCopyScript(io.fabric8.runsh.RunShLoaderTest) Time elapsed: 0.219 sec <<< ERROR!
java.lang.UnsupportedOperationException: null
at sun.nio.fs.WindowsFileSystemProvider.readAttributes(WindowsFileSystemProvider.java:192)
at java.nio.file.Files.readAttributes(Files.java:1737)
at java.nio.file.Files.getPosixFilePermissions(Files.java:2004)
at io.fabric8.runsh.RunShLoader.copyRunScript(RunShLoader.java:122)
at io.fabric8.runsh.RunShLoaderTest.checkCopyScript(RunShLoaderTest.java:37)
PosixFileAttributes aren't supported on windows. https://stackoverflow.com/questions/23151837/get-file-owner-metadata-information-with-java/42815355 is listing some alternatives.
I found this by accident, as the docker-maven-plugin didn't create the docker-extra folder with the script.
The text was updated successfully, but these errors were encountered: