Skip to content

Commit 5167996

Browse files
committed
Fix cli path
1 parent b593d6a commit 5167996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/rtk-query-codegen-openapi/test/cli.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { rimraf } from 'rimraf';
66

77
const exec = promisify(_exec);
88

9-
const cliPath = process.env.CI ? 'rtk-query-codegen-openapi' : `yarn cli`;
9+
const cliPath = process.env.TEST_DIST ? 'rtk-query-codegen-openapi' : `yarn cli`;
1010

1111
const cli = async (args: string[]) => {
1212
return await exec(`${cliPath} ${args.join(' ')}`);

0 commit comments

Comments
 (0)