mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
Fixes “missing provisioning profile” error when refreshing DEBUG builds
Removes embedded XCTest (+ dSYM) bundles before resigning for DEBUG builds.
This commit is contained in:
@@ -241,6 +241,14 @@ private extension ResignAppOperation
|
|||||||
{
|
{
|
||||||
for case let fileURL as URL in enumerator
|
for case let fileURL as URL in enumerator
|
||||||
{
|
{
|
||||||
|
#if DEBUG
|
||||||
|
guard !fileURL.lastPathComponent.lowercased().contains(".xctest") else {
|
||||||
|
// Remove embedded XCTest (+ dSYM) bundle from copied app bundle.
|
||||||
|
try FileManager.default.removeItem(at: fileURL)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
guard let appExtension = Bundle(url: fileURL) else { throw ALTError(.missingAppBundle) }
|
guard let appExtension = Bundle(url: fileURL) else { throw ALTError(.missingAppBundle) }
|
||||||
try prepare(appExtension)
|
try prepare(appExtension)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user