blob: a157d55df64ce5e30a06589ae8929ff067256d70 [file] [log] [blame]
Yong Li7e8ef4f2018-11-07 13:28:53 +08001#!/bin/sh
2
3cd $1
4
5toplevel_dirs=com
6all_yaml=`find $toplevel_dirs -name "*.yaml"`
7
8echo "nobase_yaml_DATA = \\"
9for i in ${all_yaml};
10do
11 echo " ${i} \\"
12done
13echo