From beafa2cb467b733586172307a2ab1df047af720b Mon Sep 17 00:00:00 2001 From: "Sven A. Schmidt" Date: Wed, 11 Jun 2025 13:25:04 +0200 Subject: [PATCH] Make ShellOutCommand Sendable --- Sources/ShellOutCommand.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ShellOutCommand.swift b/Sources/ShellOutCommand.swift index f108bcd..61bf2f5 100644 --- a/Sources/ShellOutCommand.swift +++ b/Sources/ShellOutCommand.swift @@ -1,5 +1,5 @@ /// Structure used to pre-define commands for use with ShellOut -public struct ShellOutCommand: Equatable, Hashable { +public struct ShellOutCommand: Equatable, Hashable, Sendable { /// The string that makes up the command that should be run on the command line public var command: String