Skip to content

Commit

Permalink
[FLINK-11836] Sort concatenated NOTICE files for NOTICE-binary
Browse files Browse the repository at this point in the history
This will make for less changes in the future because the order in the
NOTICE-binary file is deterministic.
  • Loading branch information
aljoscha committed Mar 6, 2019
1 parent cf3390b commit e27b319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/releasing/collect_license_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ done

NOTICE="${DST}/NOTICE"
[ -f "${NOTICE}" ] && rm "${NOTICE}"
find "${TMP}" -name "NOTICE" | xargs cat >> "${NOTICE}"
find "${TMP}" -name "NOTICE" | sort | xargs cat >> "${NOTICE}"

LICENSES="${DST}/licenses"
[ -f "${LICENSES}" ] && rm -r ""
Expand Down

0 comments on commit e27b319

Please sign in to comment.