blob: a157d55df64ce5e30a06589ae8929ff067256d70 [file] [log] [blame]
Matt Spinler66e7aa32018-03-26 15:07:13 -05001#!/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