aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorAndrew Robbins <contact@andrewrobbins.info>2019-03-23 15:46:31 -0400
committerAndrew Robbins <contact@andrewrobbins.info>2019-03-23 15:51:29 -0400
commite996aefdea2e3e7e11c1d886c356e24e527d05f4 (patch)
tree248196df6cf2427e06573a19483085ce108a6693 /libs
parentfbdb6292b5d3932065a7ce1b5ab8578e310d7235 (diff)
downloadlibrebootfr-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')
-rwxr-xr-xlibs/git4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/git b/libs/git
index 2a88bf84..fa4434f7 100755
--- a/libs/git
+++ b/libs/git
@@ -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
)
}