diff options
author | Leah Rowe <info@minifree.org> | 2017-07-12 09:33:54 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2017-07-12 09:33:54 +0000 |
commit | 23e04090f73229d63be11992a1370bd6b9a6ea31 (patch) | |
tree | 8c65246c0a95da83761430a481709b9cc674dac1 /libs/git | |
parent | c4dcb20a18150c3471d3c44122af866f35482c57 (diff) | |
parent | 379c69bf12fa191abbbe3a16545dbace3455f7fa (diff) | |
download | librebootfr-23e04090f73229d63be11992a1370bd6b9a6ea31.tar.gz librebootfr-23e04090f73229d63be11992a1370bd6b9a6ea31.zip |
Merge branch 'enable-extglob' of kragle/libreboot into master
Diffstat (limited to 'libs/git')
-rwxr-xr-x | libs/git | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -243,7 +243,7 @@ git_project_patch_recursive() { git_project_patch_recursive "${project}" "${repository}" "${branch}" "$(dirname "${path}")" fi - for patch in "${patches_path}"/[!.]*.{patch,diff}; do + for patch in "${patches_path}"/[!.]*.@(patch|diff); do if [[ "${patch##*.}" == "patch" ]]; then git_patch "${repository_path}" "${branch}" "${patch}" else |