Skip to content

Commit c094863

Browse files
committed
fixed check
1 parent 04df8c5 commit c094863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/node-addon-examples/scripts/verify-prebuilds.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function verifyAndroidPrebuild(dirent: fs.Dirent) {
2525
);
2626
for (const arch of EXPECTED_ANDROID_ARCHS) {
2727
const archDir = path.join(dirent.parentPath, dirent.name, arch);
28-
if (fs.existsSync(archDir)) {
28+
if (!fs.existsSync(archDir)) {
2929
return;
3030
}
3131
for (const file of await fs.promises.readdir(archDir, {

0 commit comments

Comments
 (0)