We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25437ca commit 6f55931Copy full SHA for 6f55931
zip.sh
@@ -1,6 +1,15 @@
1
-#!/bin/sh
2
-cd ./dist
3
-
4
-web-ext build --overwrite-dest
5
6
-cd ..
+#!/bin/sh
+echo adding to git
+git commit -am "commit before tentative release."
+rm -rf ./web-ext-artifacts
+echo rebuilding web extension...
+npm run clean-build
7
+echo building web extension...
8
+cd ./dist
9
+web-ext build --overwrite-dest
10
+mv ./web-ext-artifacts ../
11
+cd ..
12
+echo compressing source..
13
+git archive -o source.zip HEAD
14
+mv ./source.zip ./web-ext-artifacts
15
+echo done
0 commit comments