mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 10:19:51 +00:00
15 lines
228 B
Text
15 lines
228 B
Text
|
|
#! /bin/sh
|
||
|
|
|
||
|
|
if [ -n "${GIT_DIR}" ]; then
|
||
|
|
hooksdir="./${GIT_DIR}/hooks/"
|
||
|
|
else
|
||
|
|
hooksdir="./"
|
||
|
|
fi
|
||
|
|
|
||
|
|
. "${hooksdir}common.sh"
|
||
|
|
|
||
|
|
ticket="$(extractTicketId)"
|
||
|
|
if [ -n "${ticket}" ]; then
|
||
|
|
appendMsgTo1stLine "$1" "${ticket}"
|
||
|
|
fi
|