Method: PreCommit::Installer#target

Defined in:
lib/pre-commit/installer.rb

#targetObject

[View source]

21
22
23
24
25
26
27
28
# File 'lib/pre-commit/installer.rb', line 21

def target
  target_git_path =
  if   File.directory?(TARGET_GIT_PATH)
  then TARGET_GIT_PATH
  else File.readlines('.git').first.match(/gitdir: (.*)$/)[1]
  end
  File.join(target_git_path, TARGET_HOOKS_PATH)
end