1
0
Fork 0
mirror of synced 2024-08-10 07:38:30 +12:00

Fix for ARM processors.

This commit is contained in:
mike12345567 2022-07-13 12:37:55 +01:00
parent eadd37e22d
commit cff42331bc

View file

@ -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