We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4e719c commit 362b5b5Copy full SHA for 362b5b5
1 file changed
src/command.ts
@@ -19,7 +19,7 @@ function checkExec(exec: string): boolean {
19
20
function checkJulec(): boolean {
21
if (julec === null) {
22
- julec = checkExec('julec')
+ julec = checkExec('julec');
23
}
24
if (julec === false) {
25
vscode.window.showErrorMessage('julec not found!');
@@ -29,7 +29,7 @@ function checkJulec(): boolean {
29
30
function checkJulefmt(): boolean {
31
if (julefmt === null) {
32
- julefmt = checkExec('julefmt')
+ julefmt = checkExec('julefmt');
33
34
if (julefmt === false) {
35
vscode.window.showErrorMessage('julefmt not found!');
0 commit comments