Cross Reference: update
xref
: /
ontohub
/
git
/
hooks
/
update
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
update revision 0f897ae983f3a3e95600623e299265abccbefc34
74
N/A
#!/
usr
/
bin
/
env
ruby
74
N/A
#
74
N/A
# This file was placed here by Ontohub.
74
N/A
# It makes sure that your pushed commits will be processed properly.
74
N/A
#
74
N/A
74
N/A
require
File.expand
_path
(
'../../
lib
/
init
'
,
File.realdirpath
(
__FILE__
)
)
74
N/A
require
'git_update'
74
N/A
74
N/A
key_id
=
ENV
[
'KEY_ID'
]
74
N/A
repo_path
=
`
pwd
`
74
N/A
refs
=
ARGV
74
N/A
74
N/A
GitUpdate.new
(
repo_path
,
key_id
,
refs
)
.
exec
74
N/A