Skip to content

Commit

Permalink
Updated build script file
Browse files Browse the repository at this point in the history
  • Loading branch information
codaamok committed Feb 10, 2022
1 parent df6a279 commit 9d56d9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## [Unreleased]
### Changed
- No longer reference `gitversion` as `gitversion.exe` in `invoke.build.ps1` for better x-platform compatability

## [1.10.0] - 2022-01-26
### Added
Expand Down
2 changes: 1 addition & 1 deletion codaamok.build/Files/invoke.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ task UpdateModuleManifest {
$UpdateModuleManifestSplat["ModuleVersion"] = $Script:Version
}
else {
$GitVersion = (gitversion.exe | ConvertFrom-Json)
$GitVersion = (gitversion | ConvertFrom-Json)
$UpdateModuleManifestSplat["ModuleVersion"] = $GitVersion.MajorMinorPatch
$UpdateModuleManifestSplat["Prerelease"] = $GitVersion.NuGetPreReleaseTag
}
Expand Down

0 comments on commit 9d56d9e

Please sign in to comment.