Skip to content

Commit 231f8c1

Browse files
committed
Fix artifacts output directory.
1 parent c1e031c commit 231f8c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ static void Main(string[] args)
4646
RunTests,
4747
DependsOn(Build),
4848
ForEach("LittleForker.Tests"),
49-
project => Run("dotnet", $"test src/{project}/{project}.csproj -c Release -r ../../{ArtifactsDir} --no-build -l trx;LogFileName={project}.xml --verbosity=normal"));
49+
project => Run("dotnet", $"test src/{project}/{project}.csproj -c Release -r {ArtifactsDir} --no-build -l trx;LogFileName={project}.xml --verbosity=normal"));
5050

5151
Target(
5252
Pack,
5353
DependsOn(Build),
5454
ForEach("LittleForker"),
55-
project => Run("dotnet", $"pack src/{project}/{project}.csproj -c Release -o ../../{ArtifactsDir} --no-build"));
55+
project => Run("dotnet", $"pack src/{project}/{project}.csproj -c Release -o {ArtifactsDir} --no-build"));
5656

5757
Target(Publish, DependsOn(Pack), () =>
5858
{

0 commit comments

Comments
 (0)