Skip to content

Commit 5ce41fe

Browse files
committed
fix linting failure
1 parent e96ad12 commit 5ce41fe

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/utils/index.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -404,13 +404,7 @@ export async function shellWithDocker(): Promise<vscode.Terminal> {
404404
const terminalName = `Shell:${workspace}`;
405405
let terminal = terminals.find((t) => t.name == terminalName && t.exitStatus == undefined);
406406
if (!terminal) {
407-
terminal = vscode.window.createTerminal(terminalName, "docker-compose", [
408-
"-f",
409-
file,
410-
"exec",
411-
service,
412-
"/bin/bash"
413-
]);
407+
terminal = vscode.window.createTerminal(terminalName, "docker-compose", ["-f", file, "exec", service, "/bin/bash"]);
414408
terminals.push(terminal);
415409
}
416410
terminal.show(true);

0 commit comments

Comments
 (0)