Skip to content

Commit

Permalink
Fix compatibility with swift-argument-parser 1.3.1 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamnichols authored Mar 21, 2024
1 parent e64ab0e commit 05bb5f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-argument-parser.git",
"state" : {
"revision" : "8f4d2753f0e4778c76d5f05ad16c74f707390531",
"version" : "1.2.3"
"revision" : "46989693916f56d1186bd59ac15124caef896560",
"version" : "1.3.1"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions Sources/xcstrings-tool/Generate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ struct Generate: ParsableCommand {
completion: .file(extensions: ["xcstrings"]),
transform: { URL(filePath: $0, directoryHint: .notDirectory) }
)
var input
var input: URL

@Argument(
help: "Path to write generated Swift output",
completion: .file(extensions: ["swift"]),
transform: { URL(filePath: $0, directoryHint: .notDirectory) }
)
var output
var output: URL

@Option(
name: .shortAndLong,
Expand Down

0 comments on commit 05bb5f4

Please sign in to comment.