Skip to content

Commit

Permalink
attempt to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard committed Jul 18, 2023
1 parent 012fb35 commit 5c45c18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions call.cjs
Original file line number Diff line number Diff line change
@@ -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));
})()

0 comments on commit 5c45c18

Please sign in to comment.