Skip to content

Commit 31e7d57

Browse files
committed
Use swift concurrency
1 parent 528511f commit 31e7d57

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

Package.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
// swift-tools-version:5.2
1+
// swift-tools-version:5.6
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
55

66
let package = Package(
77
name: "swift-utilities",
8+
platforms: [
9+
.macOS(.v10_15)
10+
],
811
products: [
912
// Products define the executables and libraries produced by a package, and make them visible to other packages.
1013
.library(

Sources/swift-utilities/CommandLineAction.swift

+4-6
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@
88
import Foundation
99

1010
public struct CommandLineAction {
11-
public let longName: String
12-
public let shortName: String?
13-
public let action: () throws -> Void
11+
public let name: String
12+
public let action: () async throws -> Void
1413

15-
public init(longName: String, shortName: String? = nil, action: @escaping () throws -> Void) {
16-
self.longName = longName
17-
self.shortName = shortName
14+
public init(actionName: String, action: @escaping () async throws -> Void) {
15+
self.name = actionName
1816
self.action = action
1917
}
2018

Sources/swift-utilities/CommandLineUtils.swift

+3-7
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,11 @@ public func getEnvironmentVariable(key: String) -> String? {
123123

124124
//MARK: Text Input
125125

126-
public func promptForAction(title: String = "Select Option", actions: [CommandLineAction]) throws {
126+
public func promptForAction(title: String = "Select Option", actions: [CommandLineAction]) async throws {
127127
let selection = promptForSelection(title: title, displayOneBasedIndex: true, options: actions.map({
128-
var option = $0.longName
129-
if let shortName = $0.shortName {
130-
option = "\(option) (-\(shortName))"
131-
}
132-
return option
128+
$0.name
133129
}))
134-
try actions[selection].action()
130+
try await actions[selection].action()
135131
}
136132

137133
public func promptForSelection(title: String, displayOneBasedIndex: Bool = false, options: [String]) -> Int {

0 commit comments

Comments
 (0)