mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-30 05:04:06 +08:00
11 lines
284 B
Bash
Executable File
11 lines
284 B
Bash
Executable File
#!/bin/sh
|
|
STATUSRETVAL=$(git status --porcelain | grep -i "M mavlink/include/mavlink/v1.0")
|
|
if [ "$STATUSRETVAL" == "" ]; then
|
|
echo "checked mavlink submodule, correct version found"
|
|
else
|
|
echo "mavlink sub repo not at correct version. Try 'git submodule update'"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|