fix build script (bad doc path)

This commit is contained in:
Philippe Miossec
2018-01-28 01:22:03 +01:00
parent 00930d8d48
commit e3e13d64bd
+1 -1
View File
@@ -86,7 +86,7 @@ Task("TagVersion").Description("Handle release note and tag the new version")
var githubToken = GetGithubAuthToken();
if(FileExists(ReleaseNotesPath))
{
var newReleaseNotePath = @"doc\release-notes\v" + nextVersion + ".md";
var newReleaseNotePath = @"..\doc\release-notes\v" + nextVersion + ".md";
MoveFile(ReleaseNotesPath, newReleaseNotePath);
GitAdd(".", newReleaseNotePath);