Fix branding (#489)

This commit is contained in:
Semyon Bezrukov
2022-07-07 14:52:12 +03:00
committed by GitHub
parent 72a9c18b94
commit f3145e0d06
2 changed files with 13 additions and 12 deletions

View File

@ -6,10 +6,6 @@ sys.path.append("scripts")
import argparse
import package_common as common
import package_utils as utils
import package_core
import package_desktop
import package_server
import package_builder
# parse
parser = argparse.ArgumentParser(description="Build packages.")
@ -56,6 +52,11 @@ utils.set_cwd(common.workspace_dir, verbose=True)
if common.branding is not None:
sys.path.insert(-1, utils.get_path(common.branding + "/build_tools/scripts"))
import package_core
import package_desktop
import package_server
import package_builder
# build
if "core" in common.targets:
package_core.make()