Skip to content

Commit

Permalink
fix: build script use correct directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
buehler committed May 8, 2020
1 parent 095546b commit 7927f27
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,5 @@ class Build : NukeBuild
.SetSource(EnvironmentInfo.GetVariable<string>("NUGET_SERVER", null))
.SetApiKey(EnvironmentInfo.GetVariable<string>("NUGET_KEY", null))
.CombineWith(Glob.Files(ArtifactsDirectory, "*.nupkg"), (ss, package) => ss
.SetTargetPath(package))));

.SetTargetPath(ArtifactsDirectory / package))));
}

0 comments on commit 7927f27

Please sign in to comment.