aboutsummaryrefslogtreecommitdiffstats
path: root/otp_build
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2010-03-22 13:56:11 +0000
committerErlang/OTP <[email protected]>2010-03-22 13:56:11 +0000
commit2fc7c367942b893beae1d572c6bcda78fe28c378 (patch)
tree1aab502b1f4111b938f1d1664014cd4c5dfa53e8 /otp_build
parentd041cab91829ebacbd35ce2c5927f6ebe69b417a (diff)
downloadotp-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-xotp_build2
1 files changed, 1 insertions, 1 deletions
diff --git a/otp_build b/otp_build
index ad9d38ebca..67608138f7 100755
--- a/otp_build
+++ b/otp_build
@@ -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'
}