Repository: mesos Updated Branches: refs/heads/master 1fc918575 -> f42d2508b
Silenced symbolic link to pre-commit in bootstrap. Fixes MESOS-1960. Review: https://reviews.apache.org/r/28303 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/f42d2508 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/f42d2508 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/f42d2508 Branch: refs/heads/master Commit: f42d2508bedf8a10c7b695340db0cd3b48299754 Parents: 1fc9185 Author: Cody Maloney <[email protected]> Authored: Thu Nov 20 15:45:46 2014 -0800 Committer: Vinod Kone <[email protected]> Committed: Thu Nov 20 15:45:46 2014 -0800 ---------------------------------------------------------------------- bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/f42d2508/bootstrap ---------------------------------------------------------------------- diff --git a/bootstrap b/bootstrap index 12944e7..a77c098 100755 --- a/bootstrap +++ b/bootstrap @@ -11,11 +11,11 @@ __EOF__ fi # Install mesos default commit hook and gitignore template. -if test ! -f .git/hooks/pre-commit; then +if test ! -e .git/hooks/pre-commit; then ln -s ../../support/hooks/pre-commit .git/hooks/pre-commit fi -if test ! -f .gitignore; then +if test ! -e .gitignore; then ln -s .gitignore-template .gitignore fi
