Don't use sed to edit gitignore in release.sh
sed -i is not cross-platform.
This commit is contained in:
parent
6e7f399eb3
commit
01b077e59c
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user