Skip to content

Commit

Permalink
Fix ZSH completions.
Browse files Browse the repository at this point in the history
  • Loading branch information
LebJe committed Aug 4, 2020
1 parent 6269f2d commit 36d7f76
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public func release(version: String) {
print("git add .".blue)
print(try! shellOut(to: "git", arguments: ["add", "."]).blue)

print("git commit -m \(message)\n".blue)
print("git commit -m \"\(message)\"\n".blue)
print(try! shellOut(to: "git", arguments: ["commit", "-m", "\(message)"]).blue)

// Tag latest commit.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $ LFSPointers --generate-completion-script bash > ~/.bash_completions/LFSPointer
Add this to the `dependencies` array in `Package.swift`:

```swift
.package(url: "https://github.com/LebJe/LFSPointers.git", from: "0.12.6")
.package(url: "https://github.com/LebJe/LFSPointers.git", from: "0.12.7")
```
. Also add this to the `targets` array in the aforementioned file:

Expand Down
3 changes: 2 additions & 1 deletion Sources/LFSPointersExecutable/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ let jsonStructure = """

struct LFSPointersCommand: ParsableCommand {
static let configuration = CommandConfiguration(
commandName: "LFSPointers",
abstract: "Replaces large files in a Git repository directory with Git LFS pointers.",
discussion: "JSON STRUCTURE:\n\(jsonStructure)",
version: "0.12.6"
version: "0.12.7"
)

@Flag(name: .shortAndLong, help: "Whether to display verbose output.")
Expand Down

0 comments on commit 36d7f76

Please sign in to comment.