This website works better with JavaScript.
Home
Help
Sign In
heuzef
/
lesspass
mirror of
https://github.com/lesspass/lesspass.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
67
Wiki
Activity
Browse Source
update release webextensions script
pull/324/head
Guillaume Vincent
7 years ago
parent
6f55b1127e
commit
a087704aef
1 changed files
with
2 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-4
scripts/release-webextensions.sh
+ 2
- 4
scripts/release-webextensions.sh
View File
@@ -15,14 +15,12 @@ fi
cd webextension
npm version $1
TAG_NAME="$(git describe --abbrev=0 --tags)"
npm run version
npm run build
git add .
git commit --amend --no-edit
TAG_NAME="$(git describe --abbrev=0 --tags)"
git tag -d $TAG_NAME
git tag $TAG_NAME
npm run build
git push --tags origin master
cd ..
Write
Preview
Loading…
Cancel
Save