Skip to content

Commit c4309ae

Browse files
authored
Android: correct posix_spawn_file_actions_t typealias (#519)
1 parent 60d9c6b commit c4309ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/TSCBasic/Process/Process.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1316,7 +1316,7 @@ extension Process: Hashable {
13161316
// MARK: - Private helpers
13171317

13181318
#if !os(Windows)
1319-
#if canImport(Darwin) || os(FreeBSD) || os(OpenBSD)
1319+
#if canImport(Darwin) || canImport(Android) || os(FreeBSD) || os(OpenBSD)
13201320
public typealias swiftpm_posix_spawn_file_actions_t = posix_spawn_file_actions_t?
13211321
#else
13221322
public typealias swiftpm_posix_spawn_file_actions_t = posix_spawn_file_actions_t

0 commit comments

Comments
 (0)