mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-08 00:10:00 +02:00
9 lines
324 B
Python
9 lines
324 B
Python
import os
|
|
|
|
def update_newtab(init: bool = True):
|
|
if init:
|
|
os.system("(cd ./engine/browser/components/newtab && ../../../mach npm install && ../../../mach npm install meow@9.0.0)")
|
|
os.system("cd ./engine && ./mach npm run bundle --prefix=browser/components/newtab")
|
|
|
|
if __name__ == "__main__":
|
|
update_newtab(False)
|