mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-11-05 05:29:09 +01:00
whoop
This commit is contained in:
parent
056827822b
commit
ccd87ee252
1 changed files with 1 additions and 1 deletions
|
@ -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}");
|
||||
|
|
Loading…
Reference in a new issue