mirror of
https://github.com/devicekit/DeviceKit.git
synced 2026-05-17 10:20:34 +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:
+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