about summary refs log tree commit diff stats
path: root/build.sh
blob: c0c394627a470b5c1a6b52cfa6bfd35512414903 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env sh

git fetch --all
git merge upstream/master origin/master

npm install
npm run html # Generates html using Pug
npm run build

echo "You can now take the generated extensions to mozilla"

# vim: ft=sh