Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit 2c8f087

Browse files
authored
Update to use ZsignSwift instead of Zsign
1 parent ec70407 commit 2c8f087

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Sources/prostore/prostore.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import SwiftUI
22
import UniformTypeIdentifiers
33
import ZIPFoundation // ZipFoundation
4-
import Zsign // your Swift package that exports `Zsign`
4+
import ZsignSwift
55

66
struct FileItem {
77
var url: URL?
@@ -132,7 +132,7 @@ struct ContentView: View {
132132
DispatchQueue.main.async { message = "Signing \(appName)..." }
133133

134134
// NOTE: match your Zsign API exactly. This call mirrors the wrapper you posted earlier:
135-
let ok = Zsign.sign(
135+
let ok = ZsignSwift.sign(
136136
appPath: appDir.path,
137137
provisionPath: localProv.path,
138138
p12Path: localP12.path,

project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ targets:
4545
- package: ProSourceManager
4646
product: ProSourceManager
4747
- package: ZsignPackage
48-
product: Zsign
48+
product: ZsignSwift
4949
- package: ZIPFoundation
5050
product: ZIPFoundation

0 commit comments

Comments
 (0)