Skip to content

Commit d5f8699

Browse files
committed
fix: iOS enum
1 parent 10a2f2d commit d5f8699

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/util/spm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ import PackageDescription
100100
// DO NOT MODIFY THIS FILE - managed by Capacitor CLI commands
101101
let package = Package(
102102
name: "CapApp-SPM",
103-
platforms: [.iOS(.v${iosVersion})],
103+
platforms: [.iOS(${iosVersion.includes('.') ? `"${iosVersion}"` : `.v${iosVersion}`})],
104104
products: [
105105
.library(
106106
name: "CapApp-SPM",

0 commit comments

Comments
 (0)