Skip to content

Commit b21cf87

Browse files
authored
chore: update tinyglobby (#3136)
1 parent c3b3ab0 commit b21cf87

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/build.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,10 @@ async function build (gyp, argv) {
8484
*/
8585

8686
async function findSolutionFile () {
87-
const files = await glob('build/*.sln')
87+
const files = await glob('build/*.sln', { expandDirectories: false })
8888
if (files.length === 0) {
89-
if (gracefulFs.existsSync('build/Makefile') || (await glob('build/*.mk')).length !== 0) {
89+
if (gracefulFs.existsSync('build/Makefile') ||
90+
(await glob('build/*.mk', { expandDirectories: false })).length !== 0) {
9091
command = makeCommand
9192
await doWhich(false)
9293
return

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"proc-log": "^5.0.0",
3131
"semver": "^7.3.5",
3232
"tar": "^7.4.3",
33-
"tinyglobby": "^0.2.11",
33+
"tinyglobby": "^0.2.12",
3434
"which": "^5.0.0"
3535
},
3636
"engines": {

0 commit comments

Comments
 (0)