diff options
Diffstat (limited to 'bin/reproducible_common.sh')
-rwxr-xr-x | bin/reproducible_common.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 293aff74..211b425e 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -100,9 +100,10 @@ TABLE[8]=stats_bugs_sin_ftbfs TABLE[9]=stats_bugs_sin_ftbfs_state # package sets defined in meta_pkgsets.csv -while IFS=, read col1 col2 +# csv file columns: (pkgset_id, pkgset_group, pkgset_name) +while IFS=, read col1 col2 col3 do - META_PKGSET[$col1]=$col2 + META_PKGSET[$col1]=$col3 done < $BIN_PATH/meta_pkgset.csv # mustache templates |