This commit is contained in:
Oleg Korshul
2019-12-03 18:28:21 +03:00
parent af16f79fc8
commit 9d4a9cef97
4 changed files with 9 additions and 8 deletions

View File

@ -42,12 +42,12 @@ base.configure_common_apps()
# developing...
if ("develop" == config.option("module")):
build.build_js_develop(base_dir + "/..")
build_js.build_js_develop(base_dir + "/..")
deploy.make()
exit(0)
# check only js builds
if ("1" == base.get_env("OO_ONLY_BUILD_JS"))
if ("1" == base.get_env("OO_ONLY_BUILD_JS")):
build_js.build()
exit(0)