Skip to content

Commit

Permalink
Merge branch 'hotfix/0.24.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Mar 24, 2020
2 parents 7ae7718 + cdc1d84 commit 210e27a
Show file tree
Hide file tree
Showing 2 changed files with 9 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.24.5] / 2020-03-24
- Fixed TeamCity configuration to use Bash script on Unix

## [0.24.4] / 2020-03-05
- Fixed Refit version
- Fixed conversion of `GitHubActionsTrigger`
Expand Down Expand Up @@ -545,7 +548,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/nuke/compare/0.24.4...HEAD
[vNext]: https://github.com/nuke-build/nuke/compare/0.24.5...HEAD
[0.24.5]: https://github.com/nuke-build/nuke/compare/0.24.4...0.24.5
[0.24.4]: https://github.com/nuke-build/nuke/compare/0.24.2...0.24.4
[0.24.2]: https://github.com/nuke-build/nuke/compare/0.24.1...0.24.2
[0.24.1]: https://github.com/nuke-build/nuke/compare/0.24.0...0.24.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ public virtual void WriteSteps(CustomFileWriter writer)

using (writer.WriteBlock("exec"))
{
writer.WriteLine($"path = {BuildCmdPath.DoubleQuote()}");
var path = Platform == TeamCityAgentPlatform.Windows
? BuildCmdPath
: BuildCmdPath.Replace(".cmd", ".sh");
writer.WriteLine($"path = {path.DoubleQuote()}");
writer.WriteLine($"arguments = {arguments.DoubleQuote()}");
}
}
Expand Down

0 comments on commit 210e27a

Please sign in to comment.