12 lines
222 B
Bash
12 lines
222 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
sh minify.sh
|
||
|
|
||
|
package="jsoneditoronline.zip"
|
||
|
files="index.html jsoneditor.js jsoneditor-min.js jsoneditor.css favicon.ico changelog.txt img LICENSE NOTICE"
|
||
|
|
||
|
rm $package
|
||
|
|
||
|
# create zip file
|
||
|
zip -r $package $files
|