blob: fe0266be44606cd4945ad3e45c12d47a7ae8a7a9 [file] [log] [blame]
#!/bin/bash
#
# Copyright (C) 2012 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
xmllint=$(which xmllint)
if [[ $? -ne 0 ]]
then
echo "Missing xmllint binary, please install with 'sudo apt-get install libxml2-utils'" 1>&2
exit 1
fi
if [[ $# -lt 1 ]]
then
echo "Usage: $(basename $(readlink -f $0)) <properties-file-name.xml>" 1>&2
exit
fi
thisdir=$(dirname $(readlink -f $0))
schema=$thisdir/metadata_properties.xsd
doc=$1
xmllint --noout --schema $schema $out $doc || exit 1
$thisdir/metadata_validate.py $doc || exit 1