Skip to content

Commit

Permalink
Merge pull request #1239 from curit/master
Browse files Browse the repository at this point in the history
correct NuGet install verbosity parameter
  • Loading branch information
forki committed May 19, 2016
2 parents 216cc90 + 53219e1 commit 66d6dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/FakeLib/NuGet/Install.fs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ let buildArgs (param: NugetInstallParams) =
[ param.Sources |> argList "source"
(if param.Version <> "" then sprintf "-version \"%s\"" param.Version else "")
(if param.OutputDirectory <> "" then sprintf "-outputdirectory \"%s\"" param.OutputDirectory else "")
(match param.Verbosity with | Quiet -> "quiet" | Detailed -> "detailed" | Normal -> "")
(match param.Verbosity with | Quiet -> "quiet" | Detailed -> "detailed" | Normal -> "normal") |> sprintf "-verbosity %s"
(if param.ExcludeVersion then "-excludeversion" else "")
(if param.Prerelease then "-prerelease" else "")
(if param.NoCache then "-nocache" else "")
Expand Down

0 comments on commit 66d6dd9

Please sign in to comment.