From 1def0a7a142816541b76a64fe0218fad4cda2c39 Mon Sep 17 00:00:00 2001 From: "Sven A. Schmidt" Date: Mon, 9 Oct 2023 10:20:53 +0200 Subject: [PATCH] Make ShellOutCommand hashable as well --- Sources/ShellOutCommand.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ShellOutCommand.swift b/Sources/ShellOutCommand.swift index bcab434..f108bcd 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 { +public struct ShellOutCommand: Equatable, Hashable { /// The string that makes up the command that should be run on the command line public var command: String