Lines Matching refs:os
13 import os, os.path
14 TOP = os.path.realpath(".")
15 HOOKS = os.path.realpath(".git/hooks")
16 src = os.path.join(TOP, "hooks", "install")
17 for hook in os.listdir("hooks"):
19 tgt = HOOKS + os.sep + hook
21 if os.path.isfile(tgt) and os.access(tgt, os.X_OK):
22 if os.path.realpath(tgt) != src:
24 os.rename(tgt, tgt + ".local")
25 if os.path.lexists(tgt):
26 os.unlink(tgt)
27 …os.symlink(os.path.relpath(os.path.realpath("hooks/install"), os.path.realpath(".git/hooks/")), tg…