Skip to content

Commit

Permalink
ci(browser): fix file path (#2620)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lightning00Blade authored Sep 18, 2024
1 parent 24a70ff commit 62b6867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/update_chrome_revision.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async function updateDevToolsProtocolVersion(revision) {
await writeFile('./package.json', update);
}

const currentVersion = (await readFile('./browser', 'utf8')).split('@').pop();
const currentVersion = (await readFile('./.browser', 'utf8')).split('@').pop();
console.log(`Current pinned version is: ${currentVersion}`);

const {version, revision} = await getVersionAndRevisionForCanary();
Expand Down

0 comments on commit 62b6867

Please sign in to comment.