Skip to content

Commit

Permalink
Fix minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Dídac Coll Pujals authored and didix21 committed Jan 29, 2021
1 parent 3bf2e3c commit 93bcf1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github_changelog_generator
Original file line number Diff line number Diff line change
@@ -1 +1 @@
future-release=1.2.0
future-release=1.2.1
6 changes: 3 additions & 3 deletions Sources/Shusky/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct Shusky: ParsableCommand {
NOTE: To skip any git hook execution run: 'SKIP_SHUSKY=1 <git command>'.
For example, to skip pre-push run: 'SKIP_SHUSKY=1 git push'.
""",
version: "1.1.0",
version: "1.2.1",
subcommands: [Install.self, Run.self, Uninstall.self]
)

Expand All @@ -34,10 +34,10 @@ struct Shusky: ParsableCommand {
var packagePath: String?

@Flag(help: "Use this flag for installing all git hooks.")
var all: Bool
var all: Bool = false

@Flag(help: "Use this flag for letting shusky overwrite any hook file that already exists.")
var overwrite: Bool
var overwrite: Bool = false

func run() throws {
let shuskyCore = ShuskyCore()
Expand Down

0 comments on commit 93bcf1f

Please sign in to comment.