Skip to content
This repository was archived by the owner on Mar 1, 2020. It is now read-only.

Commit 0faf85f

Browse files
committed
chore: update Commander to 0.9.1
1 parent e5dadb6 commit 0faf85f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let package = Package(
99
],
1010
dependencies: [
1111
.package(url: "https://github.com/kylef/Stencil.git", from: "0.9.0"),
12-
.package(url: "https://github.com/kylef/Commander.git", from: "0.6.0"),
12+
.package(url: "https://github.com/kylef/Commander.git", from: "0.9.1"),
1313
],
1414
targets: [
1515
.target(name: "querykit-cli", dependencies: ["Stencil", "Commander"]),

Sources/querykit-cli/main.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Commander
66
let version = "0.2.0"
77

88
command(
9-
Option("template", Path.defaultTemplatePath, description: "Path to a custom template file", validator: isReadable),
9+
Option("template", default: Path.defaultTemplatePath, description: "Path to a custom template file", validator: isReadable),
1010
Argument<Path>("model", validator: isCoreDataModel),
1111
Argument<Path>("output", validator: isReadable)
1212
) { template, model, output in

0 commit comments

Comments
 (0)