From cff42331bcd26ae0087ec0fb31948f9172d2d5b8 Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Wed, 13 Jul 2022 12:37:55 +0100 Subject: [PATCH] Fix for ARM processors. --- packages/server/src/integrations/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/integrations/index.ts b/packages/server/src/integrations/index.ts index c83e295ec5..6edc65f08c 100644 --- a/packages/server/src/integrations/index.ts +++ b/packages/server/src/integrations/index.ts @@ -53,7 +53,7 @@ const INTEGRATIONS = { } // optionally add oracle integration if the oracle binary can be installed -if (!(process.arch === "arm64" && process.platform === "darwin")) { +if (process.arch && !process.arch.startsWith("arm")) { const oracle = require("./oracle") DEFINITIONS[SourceNames.ORACLE] = oracle.schema INTEGRATIONS[SourceNames.ORACLE] = oracle.integration