Commit 71f9283d authored by carignani's avatar carignani
Browse files

Simply pass the test if there are no YAML iles

parent 9e79a195
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2,6 +2,12 @@
# Copyright ETSI 2019
# See: https://forge.etsi.org/etsi-forge-copyright-statement.txt

# If there are no YAML file, simply exit
if [ ! $(ls | grep yaml) ] ; then 
    echo "-- No YAML files."
    exit 0
fi

fres=0

for i in ./*.yaml ;  do