Skip to content

Commit

Permalink
undo the extra slash to see if dependabot cares
Browse files Browse the repository at this point in the history
  • Loading branch information
jhongturney committed Apr 23, 2024
1 parent c715cad commit 0429d2a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,9 @@ async function run () {
core.info(`Found ${matchingDirs.size} directories matching ${entry.directory}`)

for (const dir of matchingDirs) {
const modDir = '/' + dir
core.info(`Creating entry for ${modDir} with ecosystem ${entry['package-ecosystem']}`)
core.info(`Creating entry for ${dir} with ecosystem ${entry['package-ecosystem']}`)
const newUpdate = clone(baseUpdate)
newUpdate.directory = modDir
newUpdate.directory = dir
newUpdates.push(newUpdate)
}
}
Expand Down

0 comments on commit 0429d2a

Please sign in to comment.