|
|
@@ -553,7 +553,7 @@ defmodule EMQXUmbrella.MixProject do
|
|
|
emqx_machine_boot_apps: emqx_machine_boot_app_list(edition_type),
|
|
|
built_on_arch: built_on(),
|
|
|
is_elixir: "yes",
|
|
|
- is_enterprise: (if edition_type == :enterprise, do: "yes", else: "no")
|
|
|
+ is_enterprise: if(edition_type == :enterprise, do: "yes", else: "no")
|
|
|
]
|
|
|
end
|
|
|
|
|
|
@@ -581,7 +581,7 @@ defmodule EMQXUmbrella.MixProject do
|
|
|
emqx_schema_mod: emqx_schema_mod(edition_type),
|
|
|
emqx_machine_boot_apps: emqx_machine_boot_app_list(edition_type),
|
|
|
is_elixir: "yes",
|
|
|
- is_enterprise: (if edition_type == :enterprise, do: "yes", else: "no")
|
|
|
+ is_enterprise: if(edition_type == :enterprise, do: "yes", else: "no")
|
|
|
]
|
|
|
end
|
|
|
|