Added script for generating extension archive
This commit is contained in:
parent
13efde1cfe
commit
f04547de7d
2 changed files with 7 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -13,3 +13,4 @@ Thumbs.db
|
||||||
node_modules/
|
node_modules/
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
|
feipauth.zip
|
||||||
|
|
6
zip.sh
Executable file
6
zip.sh
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
ZIP_FILE=feipauth.zip
|
||||||
|
if [ -f "$ZIP_FILE" ]; then
|
||||||
|
rm "$ZIP_FILE"
|
||||||
|
fi
|
||||||
|
zip -r "$ZIP_FILE" ./ -x .git/\*
|
Reference in a new issue