aboutsummaryrefslogtreecommitdiff
path: root/libs/git
diff options
context:
space:
mode:
authorLeah Rowe <info@minifree.org>2017-06-22 21:00:33 +0000
committerGogs <gogitservice@gmail.com>2017-06-22 21:00:33 +0000
commit7c8e518c62c6bbe6cd2b465099c561d8d53d38e9 (patch)
tree3eaa2379b0eb7dd6a3f81df31806ea463e5556af /libs/git
parentde1bed6f08d202d80be08c2a3435dbb4cff967c8 (diff)
parentf4b847e2008455c498409b38a77d346b6c87b1eb (diff)
downloadlibrebootfr-7c8e518c62c6bbe6cd2b465099c561d8d53d38e9.tar.gz
librebootfr-7c8e518c62c6bbe6cd2b465099c561d8d53d38e9.zip
Merge branch 'reproducible-archives' of kragle/libreboot into master
Diffstat (limited to 'libs/git')
-rwxr-xr-xlibs/git6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/git b/libs/git
index a750be32..97352956 100755
--- a/libs/git
+++ b/libs/git
@@ -202,12 +202,12 @@ git_describe() {
}
git_files() {
- local repository_path=$1
+ local repository_path="$1"
(
- cd "$repository_path"
+ cd "${repository_path}"
# Reproducible sorting.
- git ls-files | LC_ALL=C sort -z
+ git ls-files -z | env LC_ALL='C.UTF-8' sort -z
)
}