Browse Source

fix error in TAG_NAME

pull/324/head
Guillaume Vincent 7 years ago
parent
commit
a752e4bbad
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      scripts/release-webextensions.sh

+ 1
- 1
scripts/release-webextensions.sh View File

@@ -15,9 +15,9 @@ fi

cd webextension
npm version $1
TAG_NAME="$(git describe --abbrev=0 --tags)"
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


Loading…
Cancel
Save