Easily add all supported connectivity methods to your mbed OS project

Dependencies:   type-yd-driver

Committer:
MACRUM
Date:
Wed Jul 12 10:52:58 2017 +0000
Revision:
0:615f90842ce8
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MACRUM 0:615f90842ce8 1 #!/bin/sh
MACRUM 0:615f90842ce8 2 #
MACRUM 0:615f90842ce8 3 # An example hook script to check the commit log message taken by
MACRUM 0:615f90842ce8 4 # applypatch from an e-mail message.
MACRUM 0:615f90842ce8 5 #
MACRUM 0:615f90842ce8 6 # The hook should exit with non-zero status after issuing an
MACRUM 0:615f90842ce8 7 # appropriate message if it wants to stop the commit. The hook is
MACRUM 0:615f90842ce8 8 # allowed to edit the commit message file.
MACRUM 0:615f90842ce8 9 #
MACRUM 0:615f90842ce8 10 # To enable this hook, rename this file to "applypatch-msg".
MACRUM 0:615f90842ce8 11
MACRUM 0:615f90842ce8 12 . git-sh-setup
MACRUM 0:615f90842ce8 13 test -x "$GIT_DIR/hooks/commit-msg" &&
MACRUM 0:615f90842ce8 14 exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
MACRUM 0:615f90842ce8 15 :