in Content/scripts/utils.cake [9:14]
public static void AssertIfNullOrEmpty(string value, string varName, string envName = null) {
if (string.IsNullOrEmpty(value))
{
throw new Exception($"Variable '{varName}' cannot be empty. Please, set it in code or provide argument on environment variable '{envName ?? varName}'");
}
}