Skip to content

Commit 7927f27

Browse files
author
Christoph Bühler
committed
fix: build script use correct directory path
1 parent 095546b commit 7927f27

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build/Build.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,5 @@ class Build : NukeBuild
7878
.SetSource(EnvironmentInfo.GetVariable<string>("NUGET_SERVER", null))
7979
.SetApiKey(EnvironmentInfo.GetVariable<string>("NUGET_KEY", null))
8080
.CombineWith(Glob.Files(ArtifactsDirectory, "*.nupkg"), (ss, package) => ss
81-
.SetTargetPath(package))));
82-
81+
.SetTargetPath(ArtifactsDirectory / package))));
8382
}

0 commit comments

Comments
 (0)