Skip to content

Commit 84ae7bb

Browse files
committed
Fix prettier formatting
1 parent 34df6b6 commit 84ae7bb

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/services/tools/bash.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,6 @@ describe("SSH runtime redundant cd detection", () => {
11721172
};
11731173
}
11741174

1175-
11761175
it("should add educational note when command starts with cd", async () => {
11771176
const remoteCwd = "~/workspace/project/branch";
11781177
using testEnv = createTestBashToolWithSSH(remoteCwd);
@@ -1208,6 +1207,4 @@ describe("SSH runtime redundant cd detection", () => {
12081207
// Should not have a note field
12091208
expect(result).not.toHaveProperty("note");
12101209
});
1211-
1212-
12131210
});

src/services/tools/bash.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ export const createBashTool: ToolFactory = (config: ToolConfiguration) => {
8282
? `Note: Each bash command starts in ${config.cwd}. Directory changes (cd) do not persist between commands.`
8383
: undefined;
8484

85-
8685
// Execute using runtime interface (works for both local and SSH)
8786
const execStream = await config.runtime.exec(script, {
8887
cwd: config.cwd,

0 commit comments

Comments
 (0)