forked from Archive/PX4-Autopilot
A more compatible way of checking for an empty string.
This commit is contained in:
parent
855679f610
commit
b4ab31a2ba
|
@ -3,7 +3,7 @@
|
||||||
if [ -d NuttX/nuttx ];
|
if [ -d NuttX/nuttx ];
|
||||||
then
|
then
|
||||||
STATUSRETVAL=$(git status --porcelain | grep -i "NuttX")
|
STATUSRETVAL=$(git status --porcelain | grep -i "NuttX")
|
||||||
if [ "$STATUSRETVAL" == "" ]; then
|
if [ -z $STATUSRETVAL ]; then
|
||||||
echo "Checked NuttX submodule, correct version found"
|
echo "Checked NuttX submodule, correct version found"
|
||||||
else
|
else
|
||||||
echo "NuttX sub repo not at correct version. Try 'make updatesubmodules'"
|
echo "NuttX sub repo not at correct version. Try 'make updatesubmodules'"
|
||||||
|
@ -19,7 +19,7 @@ fi
|
||||||
if [ -d mavlink/include/mavlink/v1.0 ];
|
if [ -d mavlink/include/mavlink/v1.0 ];
|
||||||
then
|
then
|
||||||
STATUSRETVAL=$(git status --porcelain | grep -i "mavlink/include/mavlink/v1.0")
|
STATUSRETVAL=$(git status --porcelain | grep -i "mavlink/include/mavlink/v1.0")
|
||||||
if [ "$STATUSRETVAL" == "" ]; then
|
if [ -z $STATUSRETVAL ]; then
|
||||||
echo "Checked mavlink submodule, correct version found"
|
echo "Checked mavlink submodule, correct version found"
|
||||||
else
|
else
|
||||||
echo "mavlink sub repo not at correct version. Try 'make updatesubmodules'"
|
echo "mavlink sub repo not at correct version. Try 'make updatesubmodules'"
|
||||||
|
|
Loading…
Reference in New Issue