wifi test

Dependencies:   X_NUCLEO_IKS01A2 mbed-http

Committer:
JMF
Date:
Wed Sep 05 14:28:24 2018 +0000
Revision:
0:24d3eb812fd4
Initial commit

Who changed what in which revision?

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