Fix mobile package

This commit is contained in:
Oleg Korshul
2024-03-14 20:03:40 +03:00
parent 581091591b
commit dcf02e7e93
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
import os
import sys
__dir__name__ = os.path.dirname(__file__)
__dir__name__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__name__ + '/scripts')
sys.path.append(__dir__name__ + '/scripts/develop')
sys.path.append(__dir__name__ + '/scripts/develop/vendor')

View File

@ -22,7 +22,7 @@ def make_mobile():
utils.sh("rm -rfv *.zip", verbose=True)
utils.log_h2("mobile build")
ret = utils.sh("zip -r " + zip_file + " ./android* ./js", verbose=True)
ret = utils.sh("zip -r " + zip_file + " ./android ./ios", verbose=True)
utils.set_summary("mobile build", ret)
if common.deploy: