www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit aa36c459ae6ecfc8127667a0bc8c440362bfc886
parent 0f7a1a06e985ded06f40fc1cd1d89e0a23e3231b
Author: Kevin Barabash <kevinb@khanacademy.org>
Date:   Fri, 15 Apr 2016 18:14:13 -0700

don't do any linting/checking of the release commits

Summary:
We prevent any precommit checks so that we don't have to include
a "Test Plan" etc. in the release commit message.

Test Plan:
- ./release.sh 0.6.0 0.7.0

Auditors: emily

Diffstat:
Mrelease.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/release.sh b/release.sh @@ -41,7 +41,7 @@ sed -i "" -E 's|"version": "[^"]+",|"version": "'$VERSION'",|' bower.json # Make the commit and tag, and push them. git add package.json bower.json -git commit -m "v$VERSION" +git commit -n -m "v$VERSION" git tag "v$VERSION" git push origin "v$VERSION" @@ -57,7 +57,7 @@ if [ ! -z "$NEXT_VERSION" ]; then sed -i "" -E 's|"version": "[^"]+",|"version": "'$NEXT_VERSION'-pre",|' bower.json git add package.json bower.json - git commit -m "Bump master to v$NEXT_VERSION-pre" + git commit -n -m "Bump master to v$NEXT_VERSION-pre" git push origin master # Go back to the tag which has build/katex.tar.gz and build/katex.zip