diff options
author | Swift Geek <swiftgeek@gmail.com> | 2019-04-24 03:40:32 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2019-04-24 03:40:32 +0000 |
commit | 92a7d05d90c6c45648820bcea61e725f8c0d2893 (patch) | |
tree | 8a7e43d5f8fa2b8119d4a014ebd5d25a8df6bbec /libs/git | |
parent | 8d3cd741781cab0d936814170df70f637bfd48b7 (diff) | |
parent | ac24b44b0ad54a45d32884c96e537f6b2198307e (diff) | |
download | librebootfr-92a7d05d90c6c45648820bcea61e725f8c0d2893.tar.gz librebootfr-92a7d05d90c6c45648820bcea61e725f8c0d2893.zip |
Merge branch 'blobs' of and_who/libreboot into master
Diffstat (limited to 'libs/git')
-rwxr-xr-x | libs/git | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -361,18 +361,12 @@ git_project_prepare_blobs() { shift local repository_path=$(git_project_repository_path "$repository") - local blobs_path=$(project_blobs_path "$project" "$@") local blob - if ! [[ -f "$blobs_path" ]] - then - return - fi - - while read blob + while read -r blob do git_remove "$repository_path" "$blob" - done < "$blobs_path" + done < <(project_blobs "$project" "$@") if ! git_diff_staged_check "$repository_path" then |