mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
Fix #94 - Add support for RS4-specific labs
This commit is contained in:
parent
ff34f5cba1
commit
b68c1eae52
|
@ -136,7 +136,11 @@ private void GenerateLabUrl()
|
||||||
private void GenerateFamily()
|
private void GenerateFamily()
|
||||||
{
|
{
|
||||||
// start with lab-based overrides
|
// start with lab-based overrides
|
||||||
if (Lab?.StartsWith("rs3", StringComparison.InvariantCultureIgnoreCase) ?? false)
|
if (Lab?.StartsWith("rs4", StringComparison.InvariantCultureIgnoreCase) ?? false)
|
||||||
|
{
|
||||||
|
Family = ProjectFamily.Redstone4;
|
||||||
|
}
|
||||||
|
else if (Lab?.StartsWith("rs3", StringComparison.InvariantCultureIgnoreCase) ?? false)
|
||||||
{
|
{
|
||||||
Family = ProjectFamily.Redstone3;
|
Family = ProjectFamily.Redstone3;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user