From d96be07c64432e609182c3bf09c629a6163c28de Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Tue, 5 Nov 2024 17:30:21 +0000 Subject: [PATCH] JAL-4485 Path fix for macOS Application*s* --- src/ext/edu/ucsf/rbvi/strucviz2/StructureManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ext/edu/ucsf/rbvi/strucviz2/StructureManager.java b/src/ext/edu/ucsf/rbvi/strucviz2/StructureManager.java index b83333c..64b2573 100644 --- a/src/ext/edu/ucsf/rbvi/strucviz2/StructureManager.java +++ b/src/ext/edu/ucsf/rbvi/strucviz2/StructureManager.java @@ -1091,8 +1091,8 @@ public class StructureManager Set installedChimera = new HashSet<>(); String[] templates = new String[] { "%s/%s-%s.app/Contents/MacOS/%s" }; - String[] roots = new String[] { "/Application", String - .format("%s/Application", System.getProperty("user.home")) }; + String[] roots = new String[] { "/Applications", String + .format("%s/Applications", System.getProperty("user.home")) }; for (String root : roots) { for (String template : templates) -- 1.7.10.2