Don't use sed to edit gitignore in release.sh

sed -i is not cross-platform.
This commit is contained in:
Daniel Huigens 2019-09-12 14:20:13 +02:00
parent 6e7f399eb3
commit 01b077e59c
2 changed files with 1 additions and 6 deletions

3
.gitignore vendored
View File

@ -1,12 +1,9 @@
build/
.DS_Store .DS_Store
node_modules/ node_modules/
npm* npm*
src/compression/ src/compression/
test/lib/ test/lib/
dist/ dist/
dist/*.tgz
dist/*_debug.js
openpgp.store/ openpgp.store/
doc/ doc/
browserify-cache*.json browserify-cache*.json

View File

@ -24,10 +24,8 @@ npm run build
grunt test grunt test
# Add build files to git # Add build files to git
sed -i "" '/^dist\/$/d' .gitignore git add --force dist/ bower.json npm-shrinkwrap.json package.json
git add dist/ bower.json npm-shrinkwrap.json package.json
git commit -m "Release new version" git commit -m "Release new version"
git checkout .gitignore
git tag v$1 git tag v$1
git push git push
git push --tag git push --tag