fix(mac): drop empty Resources/ reference from Package.swift

Caught in a fresh-clone smoke test: SwiftPM refused to build because
.process("../../Resources") pointed at an empty directory that git
does not track. The bundle has no assets to ship yet (icon will land
with signing work), so the reference is gone. Build passes on a clean
checkout and the packaging script produces the universal .app zip as
expected.
This commit is contained in:
Resham Joshi 2026-04-17 17:01:00 -07:00
parent 495a254338
commit 3482478a49

View file

@ -13,9 +13,6 @@ let package = Package(
.executableTarget(
name: "CodeBurnMenubar",
path: "Sources/CodeBurnMenubar",
resources: [
.process("../../Resources")
],
swiftSettings: [
.enableUpcomingFeature("StrictConcurrency")
]