-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·26 lines (26 loc) · 860 Bytes
/
build.sh
File metadata and controls
executable file
·26 lines (26 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
rm -f chronos.zip
for icon in icons/*.svg; do
icon=`basename $icon`
for size in 16 48 128; do
convert -background none -resize $sizex$size icons/$icon icons/`basename $icon .svg`-$size.png
done
done
zip -r chronos.zip \
manifest.* \
*.html \
*.css \
*.js \
icons/*.svg \
icons/*.png \
bower_components/bootstrap/LICENSE \
bower_components/bootstrap/dist/js/bootstrap.js \
bower_components/bootstrap/dist/css/bootstrap.css \
bower_components/bootstrap/dist/fonts/ \
bower_components/bootstrap-select/dist/css/bootstrap-select.css \
bower_components/bootstrap-select/dist/js/bootstrap-select.js \
bower_components/jquery/LICENSE.txt \
bower_components/jquery/dist/jquery.js \
bower_components/mousetrap/LICENSE \
bower_components/mousetrap/mousetrap.js \
LICENSE