Skip to content

Commit be890a4

Browse files
committed
Add sh to make chrome
1 parent 7164e51 commit be890a4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

tools/make-chrome.sh

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/sh
2+
set -e
3+
4+
BLDIR=dist/chrome
5+
rm -rf $BLDIR/*
6+
7+
echo "Starting build"
8+
9+
cp -R src/* $BLDIR # Seperate this later
10+
cp platform/chrome/*.json $BLDIR
11+
12+
pushd $BLDIR
13+
14+
zip -r chrome.zip ./*
15+
16+
popd

0 commit comments

Comments
 (0)