From 379c69bf12fa191abbbe3a16545dbace3455f7fa Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Tue, 11 Jul 2017 23:12:38 -0400 Subject: Enable 'extglob' and replace some brace expansions Replace brace expansions with extended globs in a couple of places where brace expansions were erroneously used in place of actual pattern matching. This avoids potential errors concerning nonexisting files when patching sources. --- libs/git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/git') diff --git a/libs/git b/libs/git index 5869825d..550c5d60 100755 --- a/libs/git +++ b/libs/git @@ -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 -- cgit v1.2.3-70-g09d2