#!/bin/bash # GitLab update hook -- do not modify! # To add your own update hook, create an update.local executable hooks_dir="$(cd `dirname $0` && pwd)" update_gitlab="$hooks_dir/update.gitlab" update_local="$hooks_dir/update.local" $update_gitlab "$@" || exit 1 if [ -x $update_local ]; then $update_local "$@" || exit 1 fi