Mbed Cloud example program for workshop in W27 2018.

Dependencies:   MMA7660 LM75B

Committer:
MACRUM
Date:
Sat Jun 30 01:40:30 2018 +0000
Revision:
0:119624335925
Initial commit

Who changed what in which revision?

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