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 verify what is about to be committed
MACRUM 0:615f90842ce8 4 # by 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.
MACRUM 0:615f90842ce8 8 #
MACRUM 0:615f90842ce8 9 # To enable this hook, rename this file to "pre-applypatch".
MACRUM 0:615f90842ce8 10
MACRUM 0:615f90842ce8 11 . git-sh-setup
MACRUM 0:615f90842ce8 12 test -x "$GIT_DIR/hooks/pre-commit" &&
MACRUM 0:615f90842ce8 13 exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
MACRUM 0:615f90842ce8 14 :