#!/bin/bash
#
#
# 	Script de mise à jour des hooks client
#
#
#


if [ -d "githooks" ]; then
	if [ -d "../.git/hooks" ]; then
	    cp -f githooks/* ../.git/hooks/
	fi
fi