diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2019-03-23 15:46:31 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2019-03-23 15:51:29 -0400 |
commit | e996aefdea2e3e7e11c1d886c356e24e527d05f4 (patch) | |
tree | 248196df6cf2427e06573a19483085ce108a6693 /libs/git | |
parent | fbdb6292b5d3932065a7ce1b5ab8578e310d7235 (diff) | |
download | librebootfr-e996aefdea2e3e7e11c1d886c356e24e527d05f4.tar.gz librebootfr-e996aefdea2e3e7e11c1d886c356e24e527d05f4.zip |
libs/git: Remove unnecessary env invocation
LC_ALL is already set to "C.UTF-8" and exported if libfaketime path is
given in libreboot.conf
Diffstat (limited to 'libs/git')
-rwxr-xr-x | libs/git | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -241,8 +241,8 @@ git_files() { ( cd "$repository_path" - # Reproducible sorting. - git ls-files -z | env LC_ALL='C.UTF-8' sort -z + + git ls-files -z | sort -z ) } |