Skip to content

Commit 362b5b5

Browse files
committed
add missing semicolons
1 parent d4e719c commit 362b5b5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/command.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function checkExec(exec: string): boolean {
1919

2020
function checkJulec(): boolean {
2121
if (julec === null) {
22-
julec = checkExec('julec')
22+
julec = checkExec('julec');
2323
}
2424
if (julec === false) {
2525
vscode.window.showErrorMessage('julec not found!');
@@ -29,7 +29,7 @@ function checkJulec(): boolean {
2929

3030
function checkJulefmt(): boolean {
3131
if (julefmt === null) {
32-
julefmt = checkExec('julefmt')
32+
julefmt = checkExec('julefmt');
3333
}
3434
if (julefmt === false) {
3535
vscode.window.showErrorMessage('julefmt not found!');

0 commit comments

Comments
 (0)