nested-build

Psake nested build does not fail

I have a fairly simple Psake build script (default.ps1) that calls Invoke-Psake from within one of the tasks. Something like this: (default.ps1) . .\utilities.ps1 properties { ...define some properties } task default -depends Step1 task Step1 { Invoke-Psake script2.ps1 } The second build script has a task and does its thing....