Starting work on modifying mobile app action bar.

This commit is contained in:
Jon Benson
2013-05-06 18:46:59 +10:00
parent 42d5b8d8f9
commit 13bd906a9e
5 changed files with 39 additions and 0 deletions

View File

@ -220,6 +220,10 @@ if buildMobile:
# copy the user location script into the mobile folder.
shutil.copy(os.path.join(outDir,"user-location.user.js"), "mobile/assets/user-location.user.js")
# also copy plugins
try:
os.makedirs("mobile/assets/plugins")
except:
pass
shutil.rmtree("mobile/assets/plugins")
shutil.copytree(os.path.join(outDir,"plugins"), "mobile/assets/plugins", ignore=shutil.ignore_patterns('*.meta.js', 'force-https*'))