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 04df8c5 commit c094863Copy full SHA for c094863
packages/node-addon-examples/scripts/verify-prebuilds.mts
@@ -25,7 +25,7 @@ async function verifyAndroidPrebuild(dirent: fs.Dirent) {
25
);
26
for (const arch of EXPECTED_ANDROID_ARCHS) {
27
const archDir = path.join(dirent.parentPath, dirent.name, arch);
28
- if (fs.existsSync(archDir)) {
+ if (!fs.existsSync(archDir)) {
29
return;
30
}
31
for (const file of await fs.promises.readdir(archDir, {
0 commit comments