Skip to content

Commit

Permalink
Merge branch 'develop' into CXSPA-8050
Browse files Browse the repository at this point in the history
  • Loading branch information
petarmarkov9449 authored Oct 23, 2024
2 parents 0aba52e + dec2c82 commit 355b27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/core/src/util/glob-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function globToRegex(glob: string, literalQuestionMark = false): string {
}
} else {
const processed = toEscape.reduce(
(seg, escape) => seg?.replace(escape.replace, escape.with),
(seg, escapeRule) => seg?.replace(escapeRule.replace, escapeRule.with),
segment
);
regex += processed;
Expand Down

0 comments on commit 355b27c

Please sign in to comment.