Skip to content

Commit

Permalink
Better log messages to fix fsprojects/FSharp.TypeProviders.SDK#33
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jul 17, 2014
1 parent 12853f8 commit 87c806e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 3.2.2 - 17.07.2014
* Better log messages to fix https:/fsprojects/FSharp.TypeProviders.StarterPack/pull/33

#### 3.2.1 - 16.07.2014
* Fix fsiargs and -d options - https:/fsharp/FAKE/pull/498 https:/fsharp/FAKE/pull/500
* Change RemoveDuplicateFiles & FixMissingFiles to only save on change - https:/fsharp/FAKE/pull/499
Expand Down
3 changes: 3 additions & 0 deletions src/app/FakeLib/NuGet/NugetHelper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,9 @@ let private pack parameters nuspecFile =
let properties = propertiesParam parameters.Properties
let outputPath = (FullName(parameters.OutputPath.TrimEnd('\\').TrimEnd('/')))
let packageAnalysis = if parameters.NoPackageAnalysis then "-NoPackageAnalysis" else ""

if Directory.Exists parameters.OutputPath |> not then
failwithf "OutputDir %s does not exist." parameters.OutputPath

let execute args =
let result =
Expand Down

0 comments on commit 87c806e

Please sign in to comment.