Comments added to YAML files. One of them renamed to be more informative. GenerateJSON updated to convert all json files from folder. Change-Id: I655ece42ff94fa75568423e4175f9579a039fbf5
9 lines
136 B
Bash
Executable File
9 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for yaml_file in $(ls *.yaml) ; do
|
|
echo "Converting $yaml_file ..."
|
|
../ExecutionPlanGenerator.py $yaml_file
|
|
done
|
|
|
|
|