Skip to content

Commit

Permalink
commit before tentative release.
Browse files Browse the repository at this point in the history
  • Loading branch information
soapdog committed May 14, 2021
1 parent 25437ca commit 6f55931
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions zip.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
#!/bin/sh
cd ./dist

web-ext build --overwrite-dest

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
echo building web extension...
cd ./dist
web-ext build --overwrite-dest
mv ./web-ext-artifacts ../
cd ..
echo compressing source..
git archive -o source.zip HEAD
mv ./source.zip ./web-ext-artifacts
echo done

0 comments on commit 6f55931

Please sign in to comment.