Skip to content

Commit

Permalink
further fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jhongturney committed Apr 23, 2024
1 parent df63916 commit e84fc3e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46167,7 +46167,6 @@ const actionOpts = {
}

const globOpts = {
root: process.cwd(),
mark: true,
matchBase: true,
follow: actionOpts['follow-symbolic-links']
Expand Down Expand Up @@ -46196,7 +46195,7 @@ async function run () {
for (const entry of template.updates) {
core.info(`Processing entry ${entry.directory} for ecosystem ${entry['package-ecosystem']}`)
const baseUpdate = clone(entry)
const matchingFiles = await glob(entry.directory, globOpts)
const matchingFiles = await glob.glob(entry.directory, globOpts)
core.info(`Found ${matchingFiles.length} files matching ${entry.directory}`)
const matchingDirs = new Set(matchingFiles.map(file => path.dirname(file)))
core.info(`Found ${matchingDirs.size} directories matching ${entry.directory}`)
Expand Down
1 change: 0 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const actionOpts = {
}

const globOpts = {
root: process.cwd(),
mark: true,
matchBase: true,
follow: actionOpts['follow-symbolic-links']
Expand Down

0 comments on commit e84fc3e

Please sign in to comment.