Version of easy-connect with the u-blox cellular platforms C027 and C030 added.

Dependents:   HelloMQTT

Committer:
rob.meades@u-blox.com
Date:
Thu Sep 14 09:42:14 2017 +0100
Revision:
5:9da11cf868d9
Parent:
0:19aa55d66228
Add N2xx as an option.

Who changed what in which revision?

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