We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3b3ab0 commit b21cf87Copy full SHA for b21cf87
2 files changed
lib/build.js
@@ -84,9 +84,10 @@ async function build (gyp, argv) {
84
*/
85
86
async function findSolutionFile () {
87
- const files = await glob('build/*.sln')
+ const files = await glob('build/*.sln', { expandDirectories: false })
88
if (files.length === 0) {
89
- if (gracefulFs.existsSync('build/Makefile') || (await glob('build/*.mk')).length !== 0) {
+ if (gracefulFs.existsSync('build/Makefile') ||
90
+ (await glob('build/*.mk', { expandDirectories: false })).length !== 0) {
91
command = makeCommand
92
await doWhich(false)
93
return
package.json
@@ -30,7 +30,7 @@
30
"proc-log": "^5.0.0",
31
"semver": "^7.3.5",
32
"tar": "^7.4.3",
33
- "tinyglobby": "^0.2.11",
+ "tinyglobby": "^0.2.12",
34
"which": "^5.0.0"
35
},
36
"engines": {
0 commit comments