You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2014/11/21 00:47:08 UTC

mesos git commit: Silenced symbolic link to pre-commit in bootstrap.

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 <co...@mesosphere.io>
Authored: Thu Nov 20 15:45:46 2014 -0800
Committer: Vinod Kone <vi...@gmail.com>
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