Skip to content

Commit

Permalink
🐛 Fix versioning in release script
Browse files Browse the repository at this point in the history
Was getting an empty version because the script was looking for the
version in the wrong file.
  • Loading branch information
dideler committed Jan 2, 2018
1 parent 8147abe commit 62af4f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/release
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

cd "$(dirname "$0")/.."

version="v$(grep '"version":' package.json | cut -d\" -f4)"
version="v$(grep '"version":' manifest.json | cut -d\" -f4)"

git tag $version
git push --tags
Expand Down

0 comments on commit 62af4f8

Please sign in to comment.