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