diff options
author | Leah Rowe <info@minifree.org> | 2017-06-22 21:00:33 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2017-06-22 21:00:33 +0000 |
commit | 7c8e518c62c6bbe6cd2b465099c561d8d53d38e9 (patch) | |
tree | 3eaa2379b0eb7dd6a3f81df31806ea463e5556af /libs/git | |
parent | de1bed6f08d202d80be08c2a3435dbb4cff967c8 (diff) | |
parent | f4b847e2008455c498409b38a77d346b6c87b1eb (diff) | |
download | librebootfr-7c8e518c62c6bbe6cd2b465099c561d8d53d38e9.tar.gz librebootfr-7c8e518c62c6bbe6cd2b465099c561d8d53d38e9.zip |
Merge branch 'reproducible-archives' of kragle/libreboot into master
Diffstat (limited to 'libs/git')
-rwxr-xr-x | libs/git | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 ) } |