diff options
-rwxr-xr-x | libreboot | 2 | ||||
-rwxr-xr-x | libs/git | 2 | ||||
-rwxr-xr-x | libs/project | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -16,7 +16,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. GLOBIGNORE=".:.." # This enables the shell option 'dotglob' as well. -shopt -s nullglob +shopt -s nullglob extglob libreboot_usage() { local action @@ -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 diff --git a/libs/project b/libs/project index 2728d4fa..d2779224 100755 --- a/libs/project +++ b/libs/project @@ -465,7 +465,7 @@ project_sources_prepare_patch() { local project_path="$(project_path "${project}")" local patches_path="${project_path}/${PATCHES}" - for patch in "${patches_path}"/[!.]*.{patch,diff}; do + for patch in "${patches_path}"/[!.]*.@(patch|diff); do diff_patch_file "${sources_path}" "${patch}" done } |