We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea98260 commit d36a861Copy full SHA for d36a861
1 file changed
Tool/Sources/XcodeInspector/Helpers.swift
@@ -1,14 +1,14 @@
1
import AppKit
2
import Foundation
3
4
-extension NSRunningApplication {
+public extension NSRunningApplication {
5
var isXcode: Bool { bundleIdentifier == "com.apple.dt.Xcode" }
6
var isCopilotForXcodeExtensionService: Bool {
7
bundleIdentifier == Bundle.main.bundleIdentifier
8
}
9
10
11
-extension FileManager {
+public extension FileManager {
12
func fileIsDirectory(atPath path: String) -> Bool {
13
var isDirectory: ObjCBool = false
14
let exists = fileExists(atPath: path, isDirectory: &isDirectory)
0 commit comments