Skip to content

Commit 4c4fefc

Browse files
CopilotBernardXiong
andcommitted
style: Use const instead of let for immutable variable
Co-authored-by: BernardXiong <[email protected]>
1 parent 952da81 commit 4c4fefc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/project/cmd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function fastBuildProject(arg: any) {
3232
* @param bspPath The path to the BSP project
3333
*/
3434
function executeTerminalMenuconfig(bspPath: string) {
35-
let cmd = 'scons -C ' + bspPath + ' --menuconfig';
35+
const cmd = 'scons -C ' + bspPath + ' --menuconfig';
3636
executeCommand(cmd);
3737
}
3838

0 commit comments

Comments
 (0)