You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2019/09/05 14:49:56 UTC

[flink] branch release-1.9 updated: [FLINK-13966][licensing] Pin locale for deterministic sort order

This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.9 by this push:
     new 1dd2611  [FLINK-13966][licensing] Pin locale for deterministic sort order
1dd2611 is described below

commit 1dd2611c0b5446254b91c5cbc6c14ab8ab3f1a2d
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Thu Sep 5 09:18:37 2019 +0200

    [FLINK-13966][licensing] Pin locale for deterministic sort order
---
 tools/releasing/collect_license_files.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/releasing/collect_license_files.sh b/tools/releasing/collect_license_files.sh
index dad75bc..6da1733 100755
--- a/tools/releasing/collect_license_files.sh
+++ b/tools/releasing/collect_license_files.sh
@@ -48,7 +48,7 @@ done
 
 NOTICE="${DST}/NOTICE"
 [ -f "${NOTICE}" ] && rm "${NOTICE}"
-find "${TMP}" -name "NOTICE" | sort | xargs cat >> "${NOTICE}"
+(export LC_ALL=C; find "${TMP}" -name "NOTICE" | sort | xargs cat >> "${NOTICE}")
 
 LICENSES="${DST}/licenses"
 [ -f "${LICENSES}" ] && rm -r ""