Skip to content

Commit d453ae2

Browse files
committed
First commit
1 parent 2872ee4 commit d453ae2

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

script/zip.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
FOLDER=$(cd "$(dirname "$0")/.."; pwd)
4+
TARGET_PATH="${FOLDER}/aaa"
5+
6+
tar -zcvf ${TARGET_PATH} \
7+
--exclude=dist*/ \
8+
--exclude=.git/ \
9+
--exclude=package-lock.json \
10+
--exclude=node_modules \
11+
--exclude=firefox_dev*/ \
12+
--exclude=market_packages \
13+
--exclude=aaa \
14+
./
15+

0 commit comments

Comments
 (0)