????

Your IP : 216.73.216.1


Current Path : C:/opt/gitea/data/gitea-repositories/quan-ly-y-te/frontend.git/hooks/
Upload File :
Current File : C:/opt/gitea/data/gitea-repositories/quan-ly-y-te/frontend.git/hooks/post-receive

#!/usr/bin/env bash
# AUTO GENERATED BY GITEA, DO NOT MODIFY
data=$(cat)
exitcodes=""
hookname=$(basename $0)
GIT_DIR=${GIT_DIR:-$(dirname $0)/..}

for hook in ${GIT_DIR}/hooks/${hookname}.d/*; do
  test -x "${hook}" && test -f "${hook}" || continue
  echo "${data}" | "${hook}"
  exitcodes="${exitcodes} $?"
done

for i in ${exitcodes}; do
  [ ${i} -eq 0 ] || exit ${i}
done