Skip to content

Commit

Permalink
use normal exec instead of cli (microsoft#174060)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Feb 10, 2023
1 parent f6fea54 commit 027ac14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/code-perf.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function getExePath(buildPath) {
* @returns {string}
*/
function getLocalCLIPath() {
return process.platform === 'win32' ? path.join(VSCODE_FOLDER, 'scripts', 'code-cli.bat') : path.join(VSCODE_FOLDER, 'scripts', 'code-cli.sh');
return process.platform === 'win32' ? path.join(VSCODE_FOLDER, 'scripts', 'code.bat') : path.join(VSCODE_FOLDER, 'scripts', 'code.sh');
}

main();

0 comments on commit 027ac14

Please sign in to comment.