From ccd87ee2524b34c8bb576f5f65bc68cc3da29e03 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 12 Sep 2022 16:52:31 +0200 Subject: [PATCH] whoop --- build.cake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.cake b/build.cake index c34a300..d41f223 100644 --- a/build.cake +++ b/build.cake @@ -55,7 +55,7 @@ Task("Run").IsDependentOn("CopyToMods").Does(() => { Information($"Tiny Life exited with exit code {process.ExitCode}"); }); -Task("Publish").IsDependentOn("Build").DoesForEach(GetDirectories($"bin/{config}/net*"), d => { +Task("Publish").IsDependentOn("Build").DoesForEach(() => GetDirectories($"bin/{config}/net*"), d => { var dllFile = GetFiles($"{d}/**/*.dll").FirstOrDefault(); if (dllFile == null) throw new Exception($"Couldn't find built mod in {d}");