Default author is set in KoreBuild script
- If there is a non-empty env var "K_AUTHOR", use its value as default author - Otherwise, use the value of predefined var "AUTHORS"
This commit is contained in:
parent
a1583f298c
commit
213cddb339
|
|
@ -13,6 +13,10 @@ default Configuration='Release'
|
|||
|
||||
@{
|
||||
E("K_BUILD_VERSION", BuildNumber);
|
||||
if (string.IsNullOrEmpty(E("K_AUTHOR")))
|
||||
{
|
||||
E("K_AUTHOR", AUTHORS);
|
||||
}
|
||||
}
|
||||
|
||||
#repo-initialize target='initialize'
|
||||
|
|
|
|||
Loading…
Reference in New Issue