Skip to content

Commit d36a861

Browse files
committed
Make the extensions public
1 parent ea98260 commit d36a861

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tool/Sources/XcodeInspector/Helpers.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import AppKit
22
import Foundation
33

4-
extension NSRunningApplication {
4+
public extension NSRunningApplication {
55
var isXcode: Bool { bundleIdentifier == "com.apple.dt.Xcode" }
66
var isCopilotForXcodeExtensionService: Bool {
77
bundleIdentifier == Bundle.main.bundleIdentifier
88
}
99
}
1010

11-
extension FileManager {
11+
public extension FileManager {
1212
func fileIsDirectory(atPath path: String) -> Bool {
1313
var isDirectory: ObjCBool = false
1414
let exists = fileExists(atPath: path, isDirectory: &isDirectory)

0 commit comments

Comments
 (0)