Skip to content

Commit cf8135d

Browse files
authored
Merge pull request #5 from skiptools/enablebridging
Re-enable bridging
2 parents 674914d + b042e87 commit cf8135d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Package.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ let package = Package(
2424
]
2525
)
2626

27-
//if ProcessInfo.processInfo.environment["SKIP_BRIDGE"] ?? "0" != "0" {
28-
// package.dependencies += [.package(url: "https://source.skip.tools/skip-bridge.git", "0.0.0"..<"2.0.0")]
29-
// package.targets.forEach({ target in
30-
// target.dependencies += [.product(name: "SkipBridge", package: "skip-bridge")]
31-
// })
32-
//}
27+
if ProcessInfo.processInfo.environment["SKIP_BRIDGE"] ?? "0" != "0" {
28+
package.dependencies += [.package(url: "https://source.skip.tools/skip-bridge.git", "0.0.0"..<"2.0.0")]
29+
package.targets.forEach({ target in
30+
target.dependencies += [.product(name: "SkipBridge", package: "skip-bridge")]
31+
})
32+
}

Sources/SkipKeychain/Skip/skip.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Configuration file for https://skip.tools project
22
#
33
# Kotlin dependencies and Gradle build options for this module can be configured here
4-
#skip:
5-
# bridging: true
4+
skip:
5+
bridging: true
66

77
build:
88
contents:

0 commit comments

Comments
 (0)