Skip to content

Commit b641bc9

Browse files
authored
Fix updatetest script (#2877)
Updatetest script fails due to incorrect relative path, which was changed during cli esm migration. Fix the relative path so the script works.
1 parent 2228bbb commit b641bc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/test/functional/updatetest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
} from './testSites.js';
1414

1515
const __dirname = path.dirname(fileURLToPath(import.meta.url));
16-
const CLI_PATH = path.resolve(__dirname, '../../dist/index');
16+
const CLI_PATH = path.resolve(__dirname, '../../index');
1717

1818
/* eslint-disable no-console */
1919
function printFailedMessage(err: string, siteName: string) {

0 commit comments

Comments
 (0)