Removed 'init' command

This commit is contained in:
Mauro Balades
2024-04-28 09:00:13 +02:00
parent 096cacc1e5
commit a5cc040cc4
3 changed files with 2 additions and 16 deletions

View File

@@ -25,10 +25,10 @@ Download and bootstrap the browser
gluon download && gluon bootstrap
```
Initialize the browser and start building it
Start building the browser
```
npm run init && npm run build
npm run build
```
Finally, run the browser!

View File

@@ -1,13 +0,0 @@
import os
from update_newtab import update_newtab
def initialize_avatars():
os.system("cd src/browser/base/content/zen-avatars && python3 fetch-all-avatars.py")
def main():
initialize_avatars()
update_newtab()
if __name__ == "__main__":
main()

View File

@@ -7,7 +7,6 @@
"start": "cd engine && ./mach run --noprofile",
"import": "gluon import",
"export": "gluon export",
"init": "python3 init-browser.py",
"package": "gluon package",
"update-newtab": "python3 update_newtab.py"
},