this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Write success mesage on passed hook

+5 -3
+5 -3
git/template/hooks/hook.sh
··· 4 4 PLUGS_DIR="$GIT_DIR/hooks/plugs" 5 5 6 6 test -d "$GIT_DIR"/rebase-merge -o -d "$GIT_DIR"/rebase-apply && exit 0 7 - for enabled_plugin in "$PLUGS_DIR"/* 7 + for plugin in "$PLUGS_DIR"/* 8 8 do 9 - if [ -x "$PLUGS_DIR/$enabled_plugin/$script" ] 9 + if [ -x "$PLUGS_DIR/$plugin/$script" ] 10 10 then 11 - "$PLUGS_DIR/$enabled_plugin/$script" "$@" || exit $? 11 + "$PLUGS_DIR/$plugin/$script" "$@" || exit $? 12 12 fi 13 + 14 + echo "$plugin $script: ok" 13 15 done