mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Build: Continue the build when skipping the Sign task
This commit is contained in:
parent
71ca5e3444
commit
06806517da
1 changed files with 2 additions and 1 deletions
|
@ -312,6 +312,7 @@ partial class Build : NukeBuild
|
||||||
.DependsOn(Test, Zip)
|
.DependsOn(Test, Zip)
|
||||||
.OnlyWhenStatic(() => File.Exists(CertFileName))
|
.OnlyWhenStatic(() => File.Exists(CertFileName))
|
||||||
.OnlyWhenStatic(() => EnvironmentInfo.IsWin)
|
.OnlyWhenStatic(() => EnvironmentInfo.IsWin)
|
||||||
|
.WhenSkipped(DependencyBehavior.Execute)
|
||||||
.Executes(() =>
|
.Executes(() =>
|
||||||
{
|
{
|
||||||
string pwd = ReadPassword();
|
string pwd = ReadPassword();
|
||||||
|
@ -662,4 +663,4 @@ partial class Build : NukeBuild
|
||||||
Logger.Error("\nError running stage 2 codegen. Skipping...\n");
|
Logger.Error("\nError running stage 2 codegen. Skipping...\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue