1
0
Fork 0

docs(glob): Fix glob.create call in README example.

pull/1669/head
Róbert Papp 2024-02-25 20:58:30 +00:00 committed by GitHub
parent 88f7a7bc65
commit 306aaea26c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ const glob = require('@actions/glob')
const globOptions = {
followSymbolicLinks: core.getInput('follow-symbolic-links').toUpper() !== 'FALSE'
}
const globber = glob.create(core.getInput('files'), globOptions)
const globber = await glob.create(core.getInput('files'), globOptions)
for await (const file of globber.globGenerator()) {
console.log(file)
}