Skip to content

Commit

Permalink
Fix Artifacts directory name
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Sep 14, 2024
1 parent 667233a commit 6a609c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ project.lock.json
/MonoGame.Framework/MonoGame.Framework.Net.WindowsUniversal.project.lock.json
/MonoGame.Framework/MonoGame.Framework.WindowsUniversal.project.lock.json
artifacts/
Artifacts/

# JetBrains Rider
.idea/
Expand Down
2 changes: 1 addition & 1 deletion build/BuildContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public BuildContext(ICakeContext context) : base(context)
{
var repositoryUrl = context.Argument("build-repository", DefaultRepositoryUrl);
var buildConfiguration = context.Argument("build-configuration", "Release");
BuildOutput = context.Argument("build-output", "artifacts");
BuildOutput = context.Argument("build-output", "Artifacts");
NuGetsDirectory = $"{BuildOutput}/NuGet/";

var tags = GitAliases.GitTags(context, ".");
Expand Down

0 comments on commit 6a609c3

Please sign in to comment.