We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29165bb commit b8f5ea0Copy full SHA for b8f5ea0
PFMoveApplication.m
@@ -270,7 +270,7 @@ static BOOL IsApplicationAtPathRunning(NSString *path) {
270
if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_5) {
271
for (NSRunningApplication *runningApplication in [[NSWorkspace sharedWorkspace] runningApplications]) {
272
NSString *executablePath = [[runningApplication executableURL] path];
273
- if ([executablePath isEqualToString:path]) {
+ if ([executablePath hasPrefix:path]) {
274
return YES;
275
}
276
0 commit comments