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:
Wei Wang 2014-06-18 15:28:29 -07:00
parent a1583f298c
commit 213cddb339
1 changed files with 4 additions and 0 deletions

View File

@ -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'