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) {
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
Original file line number Diff line number Diff line change 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" : {
You can’t perform that action at this time.
0 commit comments