diff options
author | Derek Sifford <dereksifford@gmail.com> | 2018-10-10 05:18:01 -0400 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2018-10-10 11:18:01 +0200 |
commit | ec1c94306953b678bb36572897bd218fe6c76506 (patch) | |
tree | 91720d8a0fd2b80d42e088a26a96ac2152d388dd | |
parent | fd74d8b2b170b540680a9bbf6c64990f8ebafd08 (diff) | |
download | vim-polyglot-ec1c94306953b678bb36572897bd218fe6c76506.tar.gz vim-polyglot-ec1c94306953b678bb36572897bd218fe6c76506.zip |
explicitly set locale to C for sorting so README sorts same on all systems (#348)
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -130,7 +130,7 @@ update_readme() { local tf of tf="$(mktemp)" of="$(mktemp)" - sort <<<"$OUTPUT" | grep -vxE '[[:space:]]*' > "$of" + LC_ALL=C sort <<<"$OUTPUT" | grep -vxE '[[:space:]]*' > "$of" awk 'suppress == 0 { gsub(/<!--Package Count-->[^<]*<!--\/Package Count-->/, |