Skip to content
This repository has been archived by the owner on Jan 4, 2020. It is now read-only.

Commit

Permalink
Merge pull request #150 from JohnSundell/rebase_128
Browse files Browse the repository at this point in the history
 Fixed issue where adding —verbose would change install path
  • Loading branch information
orta committed Nov 26, 2017
2 parents 8157902 + e7069f9 commit 5bd186e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/MarathonCore/Install.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ internal class InstallTask: Task, Executable {

private func makeInstallPath(for script: Script) -> String {
if let argument = arguments.element(at: 1) {
if argument != "--force" {
if argument != "--force" && argument != "--verbose" {
return argument
}
}
Expand Down

0 comments on commit 5bd186e

Please sign in to comment.