Skip to content

Commit

Permalink
Merge branch 'hotfix/0.22.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Sep 21, 2019
2 parents d8347f9 + 5877b97 commit 5e6919f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [vNext]

## [0.22.1] / 2019-09-21
- Fixed assertion message for missing packages

## [0.22.0] / 2019-09-17
- Changed `UnlistedAttribute` to `List` property on `ParameterAttribute`
- Changed summary to show aborted and not-run targets as warning
Expand Down Expand Up @@ -410,7 +413,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added CLT tasks for Git
- Fixed background color in console output

[vNext]: https://github.com/nuke-build/common/compare/0.22.0...HEAD
[vNext]: https://github.com/nuke-build/common/compare/0.22.1...HEAD
[0.22.1]: https://github.com/nuke-build/common/compare/0.22.0...0.22.1
[0.22.0]: https://github.com/nuke-build/common/compare/0.21.2...0.22.0
[0.21.2]: https://github.com/nuke-build/common/compare/0.21.1...0.21.2
[0.21.1]: https://github.com/nuke-build/common/compare/0.21.0...0.21.1
Expand Down
3 changes: 2 additions & 1 deletion source/Nuke.Common/Tooling/ToolPathResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ string GetNuGetPackagesDirectory(string singlePackageId) =>
singlePackageId,
NuGetPackagesConfigFile,
version)
?.Directory
.NotNull($"Could not find package '{packageId}'{(version != null ? $" ({version})" : string.Empty)} via '{NuGetPackagesConfigFile}'.")
.Directory
: null;

string GetPaketPackagesDirectory(string singlePackageId) =>
Expand Down

0 comments on commit 5e6919f

Please sign in to comment.