From 5c45c1895df9f6defbb3ec450d7a6487ad3e792a Mon Sep 17 00:00:00 2001 From: Konstantin Dyachenko Date: Tue, 18 Jul 2023 21:04:18 +0000 Subject: [PATCH] attempt to fix --- call.cjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/call.cjs b/call.cjs index 26e7d60c..23151ae6 100644 --- a/call.cjs +++ b/call.cjs @@ -1,9 +1,9 @@ #!/usr/bin/env node -const { call } = require('./imports/engine.cjs'); +const engine = require('./imports/engine.cjs'); const DEEPLINKS_CALL_OPTIONS = process.env.DEEPLINKS_CALL_OPTIONS || '{ "operation": "run" }'; (async() => { - await call(JSON.parse(DEEPLINKS_CALL_OPTIONS)); + await engine.call(JSON.parse(DEEPLINKS_CALL_OPTIONS)); })()