Skip to content

Commit

Permalink
fix(cli): entrypoint path
Browse files Browse the repository at this point in the history
  • Loading branch information
egasimus committed Jan 30, 2024
1 parent 37b78b1 commit 9d93103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ensuite-cov.cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ console
const pkg = dirname(fileURLToPath(import.meta.url))
, c8 = resolve(pkg, 'node_modules', '.bin', 'c8')
, cli = resolve(pkg, 'ensuite.cli.mjs')
, c8args = [...argvCov, require.resolve('./ensuite.cli.cjs'), ...argvTest]
, c8args = [...argvCov, cli, ...argvTest]
, env = { ...process.env, GANESHA_NO_SOURCE_MAP: 1 }
execFileSync(c8, c8args, { env, stdio: 'inherit' })

0 comments on commit 9d93103

Please sign in to comment.