Files
steipete--codexbar/Sources/CodexBar/InstallOrigin.swift
T
2026-07-13 12:22:33 +08:00

10 lines
286 B
Swift

import Foundation
enum InstallOrigin {
static func isHomebrewCask(appBundleURL: URL) -> Bool {
let resolved = appBundleURL.resolvingSymlinksInPath()
let path = resolved.path
return path.contains("/Caskroom/") || path.contains("/Homebrew/Caskroom/")
}
}