Skip to content

Commit 4d73833

Browse files
committed
Add get_dependencies method to Swift-DocC-Render script
Adding the required `get_dependencies` class method should resolve the remaining test failures we're seeing for macOS toolchain builds.
1 parent 6fff54d commit 4d73833

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

utils/swift_build_support/swift_build_support/products/swiftdoccrender.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,7 @@ def install(self, host_target):
6666
shell.call(["mkdir", "-p", install_path])
6767
shell.call(
6868
["rsync", "-a", artifact_dist_path_with_trailing_slash, install_path])
69+
70+
@classmethod
71+
def get_dependencies(cls):
72+
return []

0 commit comments

Comments
 (0)