From 7aa97cd90908dd6f0e7e28170e00f23289dfd604 Mon Sep 17 00:00:00 2001 From: Christopher Whitley Date: Sat, 18 May 2024 21:40:22 -0400 Subject: [PATCH] Use correct working directory after moving --- build/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Program.cs b/build/Program.cs index b8131092..1603494a 100644 --- a/build/Program.cs +++ b/build/Program.cs @@ -14,7 +14,7 @@ public static class Program { return new CakeHost() .UseContext() - .UseWorkingDirectory("../../../") + .UseWorkingDirectory("../") .Run(args); } }