Skip to content

Commit

Permalink
validade_sdf: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
TSC21 authored and LorenzMeier committed Jun 4, 2018
1 parent 8fee88e commit 10b0597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/validate_sdf.bash
Expand Up @@ -44,7 +44,7 @@ delete_schema() {
# TODO: make the generated SDF from xacro remove unused args (for iris.sdf)
# TODO: add a way SDFormat schema consider Xacro xmlns declarations (for delta_wing.sdf)
if [ -d ${MODELS_DIR} ]; then
echo "Validating Gazebo worlds at ${MODELS_DIR}:"
echo "Validating models at ${MODELS_DIR}:"
while read fname; do
ret="$(xmllint_run ${fname})"
if [[ $ret -ge 1 ]]; then
Expand All @@ -62,7 +62,7 @@ fi

# Validate the worlds SDF schemas according to http://sdformat.org/schemas/root.xsd format
if [ -d ${WORLDS_DIR} ]; then
echo "Validating Gazebo worlds at ${WORLDS_DIR}:"
echo "Validating worlds at ${WORLDS_DIR}:"
while read fname; do
ret="$(xmllint_run ${fname})"
if [[ $ret -ge 1 ]]; then
Expand Down

0 comments on commit 10b0597

Please sign in to comment.