Files
JIMRI/scripts/test_decoder_XSLT_transforms.sh
2026-06-17 14:00:51 +02:00

17 lines
201 B
Bash
Executable File

#!/bin/bash
# Check that the decoder XSLT transforms work
cd xml/XSLT
ant clean && ant
result=$?
cd ../..
if [[ $result != 0 ]]; then
echo "decoder XSLT transformations failed"
exit 1
fi