mirror of
https://github.com/devicekit/DeviceKit.git
synced 2026-06-16 10:24:30 +00:00
Fix SPM manifest by removing trailing comma in function arguments
Swift 6.0 (Xcode 16.2) does not support trailing commas in function argument lists. This breaks package resolution in SPM. The trailing comma after the resources parameter is removed to resolve the "Invalid manifest" error. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
56b997e8a6
commit
f1065efb2a
+1
-1
@@ -34,7 +34,7 @@ let package = Package(
|
||||
dependencies: [],
|
||||
path: "Source",
|
||||
exclude: ["Info.plist", "Device.swift.gyb"],
|
||||
resources: [.process("PrivacyInfo.xcprivacy")],
|
||||
resources: [.process("PrivacyInfo.xcprivacy")]
|
||||
),
|
||||
.testTarget(
|
||||
name: "DeviceKitTests",
|
||||
|
||||
Reference in New Issue
Block a user