File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -84,9 +84,10 @@ async function build (gyp, argv) {
84
84
*/
85
85
86
86
async function findSolutionFile ( ) {
87
- const files = await glob ( 'build/*.sln' )
87
+ const files = await glob ( 'build/*.sln' , { expandDirectories : false } )
88
88
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 ) {
90
91
command = makeCommand
91
92
await doWhich ( false )
92
93
return
Original file line number Diff line number Diff line change 30
30
"proc-log" : " ^5.0.0" ,
31
31
"semver" : " ^7.3.5" ,
32
32
"tar" : " ^7.4.3" ,
33
- "tinyglobby" : " ^0.2.11 " ,
33
+ "tinyglobby" : " ^0.2.12 " ,
34
34
"which" : " ^5.0.0"
35
35
},
36
36
"engines" : {
You can’t perform that action at this time.
0 commit comments