Skip to content

Commit 7ad573c

Browse files
committed
Fix missing libswiftos.dylib in WorkflowTesting and WorkflowUI
1 parent c1ce9c7 commit 7ad573c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

WorkflowTesting.podspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ Pod::Spec.new do |s|
2323
s.test_spec 'Tests' do |test_spec|
2424
test_spec.source_files = 'swift/WorkflowTesting/Tests/**/*.swift'
2525
test_spec.framework = 'XCTest'
26-
test_spec.library = 'swiftDispatch'
27-
test_spec.library = 'swiftFoundation'
26+
test_spec.libraries = 'swiftDispatch', 'swiftFoundation', 'swiftos'
2827
end
29-
3028
end
29+

WorkflowUI.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Pod::Spec.new do |s|
2121
s.test_spec 'Tests' do |test_spec|
2222
test_spec.source_files = 'swift/WorkflowUI/Tests/**/*.swift'
2323
test_spec.framework = 'XCTest'
24+
test_spec.library = 'swiftos'
2425
end
25-
2626
end
27+

0 commit comments

Comments
 (0)