Skip to content

Commit

Permalink
Remove . from artifacts file. Can't have .dot files on GitHub releases
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeGinnivan committed Jun 17, 2016
1 parent 65b605f commit c5cc758
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.cake
Expand Up @@ -69,7 +69,7 @@ Task("Package")
if (releaseNotesExitCode != 0) throw new Exception("Failed to generate release notes");
System.IO.File.WriteAllLines(outputDir + ".artifacts", new[]{
System.IO.File.WriteAllLines(outputDir + "artifacts", new[]{
"nuget:Shouldly." + versionInfo.NuGetVersion + ".nupkg",
"nugetSymbols:Shouldly." + versionInfo.NuGetVersion + ".symbols.nupkg",
"releaseNotes:releasenotes.md"
Expand Down
2 changes: 1 addition & 1 deletion deploy.cake
Expand Up @@ -63,7 +63,7 @@ Task("DeployNuget")
{
// Turns .artifacts file into a lookup
var fileLookup = System.IO.File
.ReadAllLines("./releaseArtifacts/.artifacts")
.ReadAllLines("./releaseArtifacts/artifacts")
.Select(l => l.Split(':'))
.ToDictionary(v => v[0], v => v[1]);
Expand Down

0 comments on commit c5cc758

Please sign in to comment.