Skip to content

Commit

Permalink
fix(bindings): Pass pipeline path for generation
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Sep 13, 2022
1 parent cf503d6 commit e8cf50c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interfaceJSONNode.js
Expand Up @@ -2,7 +2,7 @@ import path from 'path'

import { runPipelineNode } from '../dist/node/index.js'

const pipelinePath = path.resolve('./public/pipelines/structured-report-to-text')
const pipelinePath = path.resolve(process.argv[2])
const { returnValue, stdout, stderr } = await runPipelineNode(pipelinePath, ['--interface-json'])
process.exit(returnValue)

0 comments on commit e8cf50c

Please sign in to comment.