diff options
author | Björn Gustavsson <[email protected]> | 2010-03-22 13:56:11 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-03-22 13:56:11 +0000 |
commit | 2fc7c367942b893beae1d572c6bcda78fe28c378 (patch) | |
tree | 1aab502b1f4111b938f1d1664014cd4c5dfa53e8 /otp_build | |
parent | d041cab91829ebacbd35ce2c5927f6ebe69b417a (diff) | |
download | otp-2fc7c367942b893beae1d572c6bcda78fe28c378.tar.gz otp-2fc7c367942b893beae1d572c6bcda78fe28c378.tar.bz2 otp-2fc7c367942b893beae1d572c6bcda78fe28c378.zip |
otp_build: Don't run hooks when updating the primary bootstrap
Since "otp_build update_primary" copies files that may contain
trailing spaces, the commit may fail if the repository has a
pre-commit hook that refuses to commit files with whitespace
problems. Avoid the problem by not running any hooks.
Diffstat (limited to 'otp_build')
-rwxr-xr-x | otp_build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -915,7 +915,7 @@ do_primary_git () bootstrap/lib/compiler \ bootstrap/lib/orber/include \ bootstrap/bin - git commit -m 'Update primary bootstrap' + git commit --no-verify -m 'Update primary bootstrap' } |