puccini_parse.sh 168 Bytes
Newer Older
#!/bin/bash

res=0
for i in /sol001/*.yaml ; do

	echo "Puccini: Validating file $i..."
	
	puccini-tosca parse $i
	
	if [ $? == 1 ] ; then
		res=1
	fi 
	
done
exit $res