Skip to content

Commit

Permalink
fix: Glob for *Info.plist rather than *-Info.plist
Browse files Browse the repository at this point in the history
  • Loading branch information
dpogue committed Aug 29, 2024
1 parent 4bea6de commit 49e3f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ConfigChanges/ConfigFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function resolveConfigFilePath (project_dir, platform, file) {

if (file.includes('*')) {
// handle wildcards in targets using glob.
matches = modules.glob.sync(`**/${file}`, {
matches = modules.glob.sync(`**/${file.replace('*-Info.plist', '*Info.plist')}`, {
fs,
cwd: project_dir,
absolute: true
Expand Down

0 comments on commit 49e3f4c

Please sign in to comment.