1#!/bin/bash
2#
3# Copyright 2017, Data61
4# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
5# ABN 41 687 119 230.
6#
7# This software may be distributed and modified according to the terms of
8# the BSD 2-Clause license. Note that NO WARRANTY is provided.
9# See "LICENSE_BSD2.txt" for details.
10#
11# @TAG(DATA61_BSD)
12#
13
14if [ 0$V -ge 3 ]; then
15    set -x
16fi
17
18set -e
19
20xmllint "$@" 2> >(grep -v --regexp='validates$' 1>&2)
21