diff --git a/Makefile.swift b/Makefile.swift index dbc4758..a38a6c9 100644 --- a/Makefile.swift +++ b/Makefile.swift @@ -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. diff --git a/README.md b/README.md index 4e850e5..01bf6f7 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/Sources/LFSPointersExecutable/main.swift b/Sources/LFSPointersExecutable/main.swift index 1974fca..d4e7b6e 100644 --- a/Sources/LFSPointersExecutable/main.swift +++ b/Sources/LFSPointersExecutable/main.swift @@ -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.")