From a789361dee4ef3dabed156f6d91cc1f5719513e0 Mon Sep 17 00:00:00 2001 From: Arkadiusz Holko Date: Sat, 31 Aug 2019 17:07:52 +0200 Subject: [PATCH] Fix Package.swift --- Package.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index bb96dd6..6901048 100644 --- a/Package.swift +++ b/Package.swift @@ -4,9 +4,9 @@ import PackageDescription let package = Package( name: "DeallocationChecker", products: [ - .library(name: "DeallocationChecker", targets: ["DeallocationChecker-iOS"]) + .library(name: "DeallocationChecker", targets: ["DeallocationChecker"]) ], targets: [ - .target(name: "DeallocationChecker-iOS", dependencies: [], path: "Sources") + .target(name: "DeallocationChecker", dependencies: [], path: "Sources") ] )