Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/XcodesKit/Shell/XcodesShell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import Foundation
public struct XcodesShell: Sendable {
public init() {}

public var unxip: @Sendable (URL) async throws -> ProcessOutput = {
try await XcodesProcess.run(Path.root.usr.bin.xip, workingDirectory: $0.deletingLastPathComponent(), "--expand", $0.path)
public var unxip: @Sendable (URL, URL) async throws -> ProcessOutput = {
try await XcodesProcess.run(Path.root.usr.bin.xip, workingDirectory: $1, "--expand", $0.path)
}
public var spctlAssess: @Sendable (URL) async throws -> ProcessOutput = {
try await XcodesProcess.run(Path.root.usr.sbin.spctl, "--assess", "--verbose", "--type", "execute", $0.path)
Expand Down