Skip to content

Commit e591183

Browse files
committed
Fix unit test
1 parent 605c581 commit e591183

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbrowse/src/org/labkey/jbrowse/JBrowseManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ else if (SystemUtils.IS_OS_MAC_OSX)
224224

225225
try
226226
{
227-
if (FileSystems.getFileSystem(exe.toURI()).supportedFileAttributeViews().contains("posix"))
227+
if (exe.toPath().getFileSystem().supportedFileAttributeViews().contains("posix"))
228228
{
229229
Set<PosixFilePermission> perms = Files.getPosixFilePermissions(exe.toPath());
230230
if (!perms.contains(PosixFilePermission.OWNER_EXECUTE))

0 commit comments

Comments
 (0)