diff options
author | Michael Bestas <mkbestas@lineageos.org> | 2021-11-15 19:28:56 +0200 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2021-11-15 19:28:56 +0200 |
commit | 484e2db8c1b1f425f7d433aad541c42243baf389 (patch) | |
tree | 1e2a4310281c5a71f5a122a467ec100f22f8c522 | |
parent | d3e0c026bc585bad50557c33dc1f584c438d9428 (diff) |
Use LC_ALL=C sorting in generate_prop_list_from_image()
* Generate consistent output
Change-Id: Ibab238d15a64fbad83fcfad19cb7c6f266d6ecb1
-rw-r--r-- | extract_utils.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extract_utils.sh b/extract_utils.sh index a750f2c..b0dc70e 100644 --- a/extract_utils.sh +++ b/extract_utils.sh @@ -1794,7 +1794,7 @@ function generate_prop_list_from_image() { done # Sort merged file with all lists - sort -u "$output_list_tmp" > "$output_list" + LC_ALL=C sort -u "$output_list_tmp" > "$output_list" # Clean-up rm -f "$output_list_tmp" |