Testing: exclude grib3 from keys list

This commit is contained in:
Shahram Najm 2021-02-05 12:24:28 +00:00
parent 0b803b314e
commit a456c11c74
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ TEMP=temp.list_codetable_flagtable_keys.txt
touch $TEMP
echo "Go through all files in $ECCODES_DEFINITION_PATH ..."
for file in `find $ECCODES_DEFINITION_PATH/ -name '*.def' -print`; do
for file in `find $ECCODES_DEFINITION_PATH/ -name '*.def' -print | grep -v grib3/`; do
${test_dir}/list_codetable_flagtable_keys $file >> $TEMP
done