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 a0ac762 commit 60456c8Copy full SHA for 60456c8
1 file changed
scripts/vnu-jar.mjs
@@ -18,7 +18,7 @@ execFile('java', ['-version'], (error, _stdout, stderr) => {
18
19
console.log('Running vnu-jar validation...')
20
21
- const is32bitJava = !stderr.includes('64-Bit')
+ const is32bitJava = !/64-Bit/.test(stderr)
22
23
// vnu-jar accepts multiple ignores joined with a `|`.
24
// Also note that the ignores are string regular expressions.
0 commit comments