summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Gluck <justin.gluck@livio.io>2019-05-09 10:33:08 -0400
committerJustin Gluck <justin.gluck@livio.io>2019-05-09 10:33:08 -0400
commita85406f0722daa17bbbe164f5ec2abd561ba35db (patch)
treeae5c4499afa2b19863cfa38821aed181dde0d1be
parent72a12d74d7421d312e70cc3cd57a55813e228066 (diff)
downloadsdl_ios-a85406f0722daa17bbbe164f5ec2abd561ba35db.tar.gz
dependency must come before path
-rw-r--r--Package.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/Package.swift b/Package.swift
index f997f3cd2..590aaee44 100644
--- a/Package.swift
+++ b/Package.swift
@@ -14,10 +14,10 @@ let package = Package(
),
.target(
name: "SmartDeviceLinkSwift",
- path: "SmartDeviceLinkSwift",
dependencies: [
"SmartDeviceLink"
- ]
+ ],
+ path: "SmartDeviceLinkSwift"
),
]
)